body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 30px;
    background-color: #6D112B;
    color: white;
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.btn-regresar {
    background-color: #F8F2F2;
    color: #000000;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    border: 1px solid #000000;
    margin-right: 60px; 
    font-weight: bold;  
    width: 110px;     
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-regresar:hover {
    background-color: #864457;
    color: white;
}

.titulo {
    font-weight: bold;
    margin-left: 60px;
}

.imagen-opaca {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}



.login-wrapper {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
}



.login-icono {
    width: 230px;
    margin-top: 140px;
    /*height: auto;*/
}




.login-contenedor {
    margin-top: 9vh; /* Empieza más abajo (ajusta si lo ves muy alto o bajo) */
    padding-left: 65px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
    align-items: flex-start;

}

.login-titulo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.login-label {
    font-size: 16px;
    margin-top: 20px;
    display: block;
    color: #333;
    font-weight: bold;
}

.login-input {
    width: 450px;
    padding: 10px;
    font-size: 14px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-boton {
    
    margin-top: 25px;
    background-color: #6D112B; /* guinda */
    color: white;
    padding: 10px 185px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.login-boton:hover {
    background-color: #8d2b45;
}

.fondo-cambiante {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0.35;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
}

