

/*******DIV PARA EL CONTROL***********/

.item_form{
    position: relative;
    height: 50px;
    line-height: 50px;
    margin: 20px auto;
}

/*******DIV PARA EL CONTROL***********/

/******* INPUT OUTLINE ***********/

input{
    position: absolute;
    left: 5%;
    width: 90%;
    outline: none;
    font-size: 1rem;
    padding: 0 15px;
    line-height: 50px;
    border-radius: 10px;
    border: 2px solid var(--colorPrimero);
    background: transparent;
    transition: 0.1s ease;
    z-index: 10;
}

.labelline{
    position:  absolute;
    font-size: 1rem;
    color: var(--colorPrimero);
    margin: 0 30px;
    padding: 0 5px;
    background-color: var(--colorSegundo);
    transition: 0.2s ease;
}

input:focus, input:valid{
    border: 3px solid var(--colorPrimero);
}

input:focus + .labelline, input:valid + .labelline{
    color: var(--colorPrimero);
    height: 25px;
    line-height: 25px;
    
    transform: translate(-12px, -11px) scale(0.8);
    z-index: 10;
}

/******* INPUT OUTLINE ***********/

/******* BOTON DENTRO DE INPUT ***********/

.muestrapass{
    position: absolute;
    top: 5px;
    right: 15%;
    color: rgba(58, 63, 71, 1);
    z-index: 14;
}

.muestrapass:hover{
    cursor: pointer;
}

.errmens{
    display: none;
    justify-content: center;
    align-items: center;
    margin: 5px auto;
}

.errmens span{
    margin-left: 5px;
    color: #CB4335;    
}

.muestramensaje{
    width: fit-content;
    color: #CB4335;
    font-size: 1.2rem;
}

.muestra_error{
    position: absolute;
    top: 5px;
    right: 7%;
    color: #CB4335;
    z-index: 14;
}

.err_usuario{
    display: none;
}

.err_pass{
    display: none;
}

.phcolor::placeholder{
    color: #CB4335;
}


/******* BOTON DENTRO DE INPUT ***********/

/******* BOTON  ***********/

.btn_form{
    width: 80%;
    height: 40px;
    font-size: 1rem;
    line-height: 40px;
    background-color: var(--colorCuarto);
    color: var(--colorTercero);
    margin: 0 10%;
    border: none;
    border-radius: 5px;
    transition: background-color 0.4s linear;
}

.btn_form:hover{
    background-color: var(--colorPrimero);
}

/******* BOTON  ***********/