@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    /* background-color: #fff; */
    background-color: #BABABA;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container-login, .container-sign-up {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signin-box, .form-box{
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 10px 5px rgba(68, 68, 68, 0.4);
    text-align: left;
}

.login-h2, .sign-up-h2 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: #732629;
}

.login-p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* .input-group {
    margin-bottom: 1rem;
}

.input-group label {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.input-group input:focus {
    border-color: #732629;
    outline: none;
} */

/* .input-group small.error { */
.error {
    color: red;
    font-size: 0.8rem;
    display: none;
}

.gender {
    margin-bottom: 1.5rem;
}

.gender-options {
    display: flex;
    gap: 10px;
}

.gender-options label {
    display: flex;
    align-items: center;
    color: #333;
}

.gender-options input {
    margin-right: 0.5rem;
}


.form {
    margin-top: 2rem;
}

.label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left;
}

.input-field {
    width: 100%;
    padding: 4%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.input-group {
    margin-bottom: 1rem;
}

.password-container {
    position: relative;
}

.password-container input {
    padding-right: 35px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 35%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #999;
}

.forgot-password-div{
    margin: 2% 0% 6% 0%;
}

.forgot-password {
    display: block;
    margin: 2% 0% 0% 5%;
    text-align: left;
    font-size: 12px;
}

.btn-register, .btn-login {
    background-color: #7a1b27;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-register:hover,  .btn-login:hover {
    background-color: #8a2b37;
}

.privacy-text {
    font-size: 12px;
    margin-top: 20px;
    color: #666;
}

.privacy-text a , .required-field, .login-a {
    color: #7a1b27;
}

@media (max-width: 600px) {
    .signin-box, .form-box {
        width: 90%;
        padding: 20px;
    }

    .sign-up-h2 , .login-h2 {
        font-size: 20px;
    }

    .btn-register, .btn-login {
        font-size: 14px;
    }
}



