.login-background-contenedor{
    height: 1000px;
    width: 95%;
}
.login-contenedor-frame{
    height: 1000px;
    width: 95%;
}
.login{
    margin-top: 0;
   
}

.inputs{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1%;
    width: 100%;
    align-items: stretch;
    justify-content: center;
    margin-left: 10%;
    margin-bottom: 1rem;
}
.inputs input{
    width: 80%;
    
}
/****************************** (x)*****************/
.formulario-input-incorrecto:focus{
    border: 3px solid #d31b40 !important;
    background-position: 98% 50%;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-image: url(../img/iconos-variedad/circle-x.svg);
}
.formulario-input-incorrecto{
    background-position: 98% 50%;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-image: url(../img/iconos-variedad/circle-x.svg);
}

.formulario-input-correcto:focus{
    border: 3px solid #4bb61a !important;
    background-position: 98% 50%;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-image: url(../img/iconos-variedad/circle-check.svg);
}

.formulario-input-correcto{
    background-position: 98% 50%;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-image: url(../img/iconos-variedad/circle-check.svg);
}
.login-email::placeholder{
    background-image: none;
    background-size: 25px 25px;
    background-repeat: no-repeat;
    background-position: 2%;
    top: 0;
    left: 0;
    padding-left: 20px;

}
.login-password::placeholder{
    background-image: none;
    background-size: 25px 25px;
    background-repeat: no-repeat;
    background-position: 2%;
    top: 0;
    left: 0;
    padding-left: 20px;

}

 .emaili{
    width: 100%;
    grid-column: 1/3 !important;
    order: 1;
    
}

.email-input{
    width: 90% !important;
} 

.formulario-mensaje-error{
    display: none;
    font-size: 12px;
    font-weight: 600;
    width: 80%;
}

.formulario-mensaje-error-activo{
    display: block;
}
/* .formulario-mensaje-error-inactivo{
    display: none;
    
} */
.formulario-mensaje{
    
    display: flex;
    margin-left: 5%;
    background: linear-gradient(145deg, #f01f49, #ca1a3d);
    box-shadow:  1px 1px 10px #d31b40,
             -1px -1px 10px #ed1f48;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    margin-right: 5%;
    color: aliceblue;
    padding-right: 2%;
}
.desaparese{
    display: none;
}
.aparece{
    display: flex;
}
@media (max-width:576px){
    .inputs{
        grid-template-columns:100%;
        margin-left: 15%;
    }

    .inputs input{
        width: 90%;
        margin-left: 0%;
    }

    .inputs-contenido{
        width: 90%;
        margin-left: 0%;
    }
    .emaili{
        grid-column:1/2 !important; 
    }
    .formulario-mensaje-error{
        width: 95%;
    }
    .formulario-mensaje{
        padding-right: 0;
    }
    .login-form{
        margin-top: 20% !important;
    }
    .login-submit{
        margin-top: 2rem;
        width: 80%;
    }
}
