/* =========================================
   ESTILOS DEL LOGIN
   ========================================= */
body{
    background-image: url('../img/fondo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    background: var(--white);
    border-top: 5px solid var(--tp-blue); 
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    width: 380px;
}

.logo-login {
    display: block;         
    margin: 0 auto 30px auto;   
    max-width: 400px;       
    height: auto;           
    object-fit: contain;
    margin-left: -125px;
    margin-right: auto;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
    color: var(--tp-blue); 
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--tp-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.btn-evertech {
    background-color: var(--tp-blue);
    color: white;
    font-weight: 600;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-evertech:hover {
    background-color: var(--tp-blue-hover);
    transform: translateY(-1px);
}