@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body, input, button {
    font-family: "Inter", sans-serif;
}

body {
    background-color: #fdf7ff; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    margin: 0;
    font-family: Arial, sans-serif;
}


.login-container {
    background-color: white;
    width: 360px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.29);
    text-align: center;
}


.login-logo {
    margin-bottom: 20px;
}


.form-control {
    border: 2px solid #3535358f;
    border-radius: 10px;
}

.form-control:focus {
    box-shadow: none; 
    border: 1px solid #B200FF;
}

.btn-login {
    width: 100%;
    background-color:#4F378A;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    margin-top: 15px;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #A17BFF;
}

.forgot-password {
    font-size: 12px;
    color: #64009F;
    text-decoration: none;
}

.sign-up {
    font-size: 16px;
    color: #64009F;
    text-decoration: none;
}



.forgot-password:hover, .sign-up:hover {
    text-decoration: underline;
}


.form-check-input:checked {
    background-color: #65558F;
    border-color: #65558F;
}

.form-check-label {
    font-size: 14px;
}


.sign-up-container {
    margin-top: 20px;
    font-size: 16px;
    color: #79747E;
}

.save-login {
    color: #6a00b3;
}

.input {
    display: flex;
    position: relative;
    align-items: center;
}

.btn-eye {
    position: absolute;
    right: 3px;
    cursor: pointer;
    padding: 5px;
}

.btn-eye i {
    color: black;
}
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.text-start input{
    border-radius: 8px;
    border: 1px solid #79747E;
}