/* INICIO DE SESIÓN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}


:root {
    --darkPink-color: rgba(245, 107, 157, 0.514);
    --mediumPink-color: rgba(236, 141, 228, 0.514);
    --btn-letter-color: rgb(253, 252, 252);
    --purple-color: rgb(243, 98, 243);
    --black-color: rgb(10, 10, 10);
    --golden-color: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --box-shadow-golden: #BF953F;
}

body {
    height: 100vh;
    background: url(../IMG/fondo\ prueba3.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

#form_main_container {
    width: 100%;
    max-width: 370px;
    text-align: center;
    overflow: hidden;
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

.div_container {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    padding: 10px;


}

#div_container_login,
#div_container_register {
    transition: 1s;
}



.form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    backdrop-filter: blur(40px);
    border-radius: 10px;

    font-size: 14px;
}

.form h1 {
    margin: 20px 0px 6px 0px;
}

.div_input {
    position: relative;
    margin: 10px 0px;
    padding: 10px;
}

.error_message {
    font-size: 10px;
    text-align: left;
    display: none;
}

.styles_error_message {
    display: block;
    color: rgb(235, 5, 5);
    font-weight: bold;
}
.error_message.styles_error_message{
    background-color:rgba(255, 0, 0, 0.411) ;
    color: white;
    margin-top: 3px;
}

.style_right_icon {
    color: rgb(33, 136, 33);
}

.input {
    border: none;
    outline: none;
    background-color: transparent;
    height: 20px;
    width: 100%;
    border-bottom: 2px solid white;
}

.style_right_input {
    border-bottom: 2px solid rgb(33, 136, 33);
}

.div_icon {
    width: 15px;
    height: 15px;
    position: absolute;
    display: grid;
    place-items: center;
    top: 5px;
    right: 0;
    margin-right: 15px;
}


.div_input label {
    transition: .2s;
    font-size: 14px;
    position: absolute;
    left: 0;
    margin-left: 10px;
}

.div_input input:focus~label,
.div_input input:valid~label {
    transform: translateY(-110%);
    font-size: 10px;
}

.div_btn {
    width: 70%;
    height: 30px;
    max-width: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 7px;
    cursor: pointer;
    position: relative;
}

.div_btn button {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    border: none;
    outline: none;
    padding: 7px;
    background-color: transparent;
    cursor: pointer;
    z-index: 1;
    transition: .2s;
}

.div_btn::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 110%;
    height: 60px;
    background: linear-gradient(180deg, var(--box-shadow-golden), rgb(240, 220, 130), var(--box-shadow-golden), rgb(240, 220, 130));
    transition: .3s;
    z-index: 0;
}

.div_btn:hover::before {
    transform: translateY(-40%);
}

.div_btn:hover button {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.div_recordar,
.div_btn {
    margin: 7px auto;
}

.div_lost_password_no_account {
    margin: 20px 0px;
}

.span {
    font-weight: bold;
    color: rgb(129, 75, 5);
    padding: 6px;
    cursor: pointer;
}

.span:hover {
    color: var(--box-shadow-golden);
}