.indexBody{
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.login-container{
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px 0px;
  border-radius: 20px;
}
.inputC {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 16px;
            background-color: #f5f5f5;
            box-sizing: border-box;
        }

button {
            width: 100%;
            padding: 15px;
            margin-top: 20px;
            background-color: black;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            cursor: pointer;
            box-sizing: border-box;
        }

        button:hover {
            background-color: #333;
        }