body {
    background-color: rgba(252, 252, 162, 0.075);
}

.bg {
    background-image: url(../img/login/logo.png);
    background-position: center center;
    background-size: cover;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
}


/* ESTILOS FORMULARIO */

.form-label {
    cursor: pointer;
}

.formulario-input {
    position: relative;
}

.form-control {
    transition: .3s ease all !important;
}

.form-control:focus {
    box-shadow: 0px 0px 3px 0px #0075FF !important;
}

.formulario-estado {
    position: absolute;
    right: 10px;
    bottom: 8px;
    z-index: 100;
    font-size: 16px;
    opacity: 0;
}

.formulario-input-error {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 13px;
    display: none;
    color: rgba(255, 0, 0, 0.9);
}

.formulario-input-error-activo {
    display: block;
    padding: 0 !important;
    margin: 0 !important;
}

.formulario-mensaje-exito {
    color: #119200;
}

.formulario-mensje-exito-activo {
    display: block
}

.alert {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: center;
}


/* ESTILOS PARA VALIDACION */

.formulario-grupo-correcto .formulario-estado {
    color: #1ed11d;
    opacity: 1;
}

.formulario-grupo-incorrecto .form-label {
    color: rgba(255, 0, 0, 0.9);
    ;
}

.formulario-grupo-incorrecto .formulario-estado {
    color: rgba(255, 0, 0, 0.9);
    ;
    opacity: 1;
}

.formulario-grupo-incorrecto .form-control {
    border: 2px solid rgba(255, 0, 0, 0.9);
    /* box-shadow: 0px 0px 3px 1px rgba(255, 0, 0, 0.9)!important; */
    ;
}