/* ============================
   LOGIN
============================ */

/* Fondo azul oscuro corporativo */
.login-wrapper {
    background: #0a2a43;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* Tarjeta blanca centrada */
.login-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 380px;
}

/* Título */
.login-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0a2a43; /* azul corporativo */
}

/* Botón azul corporativo */
.btn-login {
    background: #0a2a43 !important;
    border: none !important;
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-login:hover {
    background: #061a2b !important;
}

/* Alertas */
.alert-custom {
    font-size: 0.9rem;
    padding: 0.6rem;
}



/* ============================
   CABECERA NIKE
============================ */

.nike-header {
    background: #0a2a43; /* mismo color que el login */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* IZQUIERDA: escudo + título */
.nike-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nike-logo {
    width: 36px;
    height: 36px;
}

.nike-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

/* DERECHA: usuario + logout */
.nike-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nike-username {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.nike-logout-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
}



/* ============================
   CONTENIDO RESPONSIVE
============================ */

@media (max-width: 576px) {

    /* Contenido a pantalla completa */
    .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Ajustes de cabecera en móvil */
    .nike-title {
        font-size: 1.2rem;
    }

    .nike-logo {
        width: 30px;
        height: 30px;
    }

    .nike-username {
        font-size: 1rem;
    }
}

main.container-fluid {
    padding-top: 20px !important; /* espacio para que los botones respiren */
    margin-top: 70px !important;  /* altura real de la cabecera */
}


