header {
    position: relative !important;
    width: 100% !important;
    overflow: hidden;
    scrollbar-width: auto;
}

/* Centrado total de la página */
.auth-wrapper {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: radial-gradient(circle at top, #f0f7ff 0%, #ffffff 100%);
}

.login-container {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    transition: transform 0.3s ease;
}

.login-header h2 {
    color: #006494; /* Tu azul corporativo */
    letter-spacing: -0.5px;
}

/* Campos de entrada con icono */
.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-custom .icon {
    position: absolute;
    left: 15px;
    color: #adb5bd;
    transition: color 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1.5px solid #e9ecef;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #0096c7;
    box-shadow: 0 0 0 4px rgba(0, 150, 199, 0.1);
}

.form-input:focus + .icon {
    color: #0096c7;
}

/* Botón estilizado */
.btn-primary {
    background-color: #0096c7;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0077b6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 150, 199, 0.3);
}

/* Responsivo para móviles */
@media (max-width: 480px) {
    .login-container {
        padding: 1.5rem;
        border-radius: 15px;
    }
}