@import url('general.css');
/* --------------------------------------------- AUTH VIEW --------------------------------------------- */
.div_auth {
    display: flex;
    padding: 20px 30px;
    width: 100%; 
    background: var(--color-background);
    overflow: hidden;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
}

.hr {
    border: 1px solid #000; 
}

/* Login box */

.lr_box {
    padding: 20px 10px;
    border-radius: 10px;
    width: 45%;
    background: var(--color-background-div);
}

.lr_form {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.d_lr_header,
.d_lr_footer {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.d_lr_footer a:hover{
    color: #070707;
}
.d_lr_header h3 {
    font-size: 25px;
}

.d_lr_header h2 {
    font-size: 28px;
}

.d_lr_header h1 {
    font-size: 19px;
    color: var(--color-texto);
}

.d_lr_body {
    display: flex;
    flex-direction: column;
    width: 100%;
}


.d_lr_body label {
    width: 80%;
    margin-bottom: 5px;
    text-align: left; 
}



.text_field{
    display: flex;
    flex-direction: column;
    width: 80%; 
    padding: 10px 0; 
    box-sizing: border-box; 
    font-size: 16px; 
    margin: 0 auto;
}

.text_field input{
    width: 100%; 
    margin-bottom: 10px; 
    box-sizing: border-box; 
    font-size: 16px; 
    margin: 0 auto;
    width: 100%;
    padding: 10px;
}

.password_login_container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin: 0 auto;
}


.fa_eye_btn{
    padding: 0 10px;
    margin: 0;
    background: #0000ff00;
    width: auto;
    color: #070707;
    font-size: 20px;
    font-weight: 700;
}

.fa_eye_btn:hover{

    background: #0000ff00;
}

.login_credentials_error{
    display: flex;
    border: 1px solid #ee4c4c;
    background: #ff969651;
    width: 80%;
    margin: 10px auto;
    padding: 20px 30px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.login_credentials_error h1{
    font-size: 13px;
    font-weight: 700;
    color: rgb(109, 0, 0);
    font-family: 'Roboto';
}

.login_error_list{
    border: 1px solid #ee4c4c;
    background: #ff969651;
    width: 80%;
    margin: 10px auto;
    padding: 20px 30px;
    border-radius: 5px;
}

.login_error_list ul li{
    color: rgb(109, 0, 0);
    font-size: 15px;
    list-style: circle;
    font-weight: 700;
    padding: 10px 0;
    font-family: 'Roboto';
}

.register_error_list{
    border: 1px solid #ee4c4c;
    background: #ff969651;
    width: 80%;
    margin: 10px auto;
    padding: 20px 30px;
    border-radius: 5px;
}

.register_error_list ul li{
    color: rgb(109, 0, 0);
    font-size: 15px;
    list-style: circle;
    font-weight: 700;
    padding: 10px 0;
    font-family: 'Roboto';
    list-style: none;
    text-align: center;
}


.eula_div{
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    align-items: center;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
}
.d_lr_body input[type="checkbox"] {
    width: 20px; 
    height: 20px;
    box-sizing: border-box; 
}

.d_lr_body input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.eula_div a{
    color: var(--color-texto);
    font-size: 18px;
}
.eula_div a:hover{
    color: var(--color-background-footer);
}

.strength-bar {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.line {
    width: 14%;
    height: 10px;
    background: #ddd;
    border-radius: 2px;
}


.strength-message {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
.strength-message p{
    font-size: 15px;
    font-weight: 600;
    font-family: 'Roboto';
 }

 .password_rules {
    border: 1px solid #a0d8ff;
    background: #e7f3ff;
    width: 80%;
    margin: 0 auto;
    padding: 10px 20px;
    border-radius: 5px;
}
.password_rules h1 {
    padding-bottom: 10px;
}
.password_rules li ,
.password_rules h1 {
    color: #004a7c;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Roboto';
}

.password_rules ul {
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    gap: 10px; 
}


.remember_password {
    color: var(--color-texto);
    font-size: 18px;
}


@media screen and (max-width: 1200px){
    .lr_box {
        width: 70%;
    }
    .div_auth {
        padding: 20px 10px;
        gap: 40px;
        height: auto;
        flex-direction: column;
    }

}

@media screen and (max-width: 825px){
    .lr_box {
        width: 90%;
    }
    .d_lr_header h1 {
        text-align: center;
        padding: 0 10%;
    }



}

/* ----------------------------------------------------------------------------------------------------- */
