/* ============================================
   SPORTHOUSE - ESTILOS GLOBALES
   ============================================ */

/* Variables CSS Globales */
:root {
    /* Colores institucionales */
    --primary-color: #337da0;
    --secondary-color: #70b437;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    
    /* Colores de deportes */
    --futbol-color: #3788d8;
    --voleibol-color: #f39c12;
    --minitejo-color: #e74c3c;
    --bolirana-color: #9b59b6;
    
    /* Colores de bares */
    --bar1-color: #f39c12;
    --bar2-color: #3498db;
    --bar3-color: #e74c3c;
    
    /* Espaciado */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Bordes */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 15px;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
}

/* ============================================
   ESTILOS GENERALES
   ============================================ */

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f6f9;
    padding-top: 0;
}

/* ============================================
   PORTAL CLIENTE
   ============================================ */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Sport Cards */
.sport-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.sport-card:hover,
.sport-card.active {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.sport-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Time Slot Buttons */
.time-slot-btn {
    border-radius: var(--border-radius-lg);
    padding: 10px 5px;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid #dee2e6;
    background-color: white;
    color: #6c757d;
}

.time-slot-btn:hover:not(:disabled) {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.time-slot-btn.available {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.time-slot-btn.available:hover {
    background-color: #e7f1ff;
}

.time-slot-btn.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.time-slot-btn:disabled {
    background-color: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Section Title */
.section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Schedule Column */
.schedule-column {
    background: #fff;
    padding: 20px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.schedule-header {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.schedule-header i {
    font-size: 1.2rem;
}

/* Utility Colors */
.text-orange { color: #fd7e14; }
.text-purple { color: #6f42c1; }
.text-yellow { color: var(--warning-color); }

/* Date Picker Container */
.date-picker-container {
    background: white;
    padding: 15px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Payment Options */
.payment-option {
    border: 2px solid #dee2e6;
    border-radius: var(--border-radius-lg);
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.payment-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(51, 125, 160, 0.2);
}

.payment-option.selected {
    border-color: var(--secondary-color);
    background: #f0f8f0;
    box-shadow: 0 4px 12px rgba(112, 180, 55, 0.3);
}

.payment-option i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}

.payment-option span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   SIDEBAR
   ============================================ */

:root {
    --sidebar-width: 280px;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#sidebar {
    background: linear-gradient(180deg, #b2c8d3 0%, #70b437 100%);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 3px 0 20px rgba(0,0,0,0.15);
    padding: 0;
}

/* Ocultar scrollbar */
#sidebar::-webkit-scrollbar {
    width: 6px;
}

#sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background: linear-gradient(180deg, var(--primary-color) 0%, #2c5f7a 100%);
    color: white;
    padding: 20px 0;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.sidebar-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.sidebar-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-left-color: var(--secondary-color);
}

.sidebar-menu a.active {
    background: rgba(255,255,255,0.15);
    color: white;
    border-left-color: var(--secondary-color);
    font-weight: 600;
}

.sidebar-menu a i {
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.main-content {
    margin-left: var(--sidebar-width);
    padding: 30px;
    min-height: 100vh;
    background-color: #f8f9fa;
    width: calc(100% - var(--sidebar-width));
}

/* Estilos para items deshabilitados */
.nav-link.disabled-module {
    opacity: 0.5;
    cursor: not-allowed !important;
    position: relative;
}

.nav-link.disabled-module:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.lock-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animación del candado */
@keyframes shake {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-50%) rotate(-10deg); }
    75% { transform: translateY(-50%) rotate(10deg); }
}

.nav-link.disabled-module:hover .lock-icon {
    animation: shake 0.5s ease-in-out;
}

/* ============================================
   DASHBOARD / INDEX
   ============================================ */

/* Variables adicionales para dashboard */
:root {
    --sporthouse-primary: #1a56db;
    --sporthouse-secondary: #0e9f6e;
    --sporthouse-accent: #f05252;
    --sporthouse-warning: #f59e0b;
    --sporthouse-info: #3f83f8;
    --sporthouse-dark: #1f2937;
    --sporthouse-light: #f9fafb;
}

.dashboard-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    background: white;
    position: relative;
    overflow: visible;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.dashboard-card .card-body {
    padding: 1.5rem;
}

/* Estilos específicos para tarjetas de acceso rápido */
.module-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.module-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

/* Colores de fondo para los iconos según el contexto */
.text-primary .module-icon { background-color: rgba(13, 110, 253, 0.1); }
.text-success .module-icon { background-color: rgba(25, 135, 84, 0.1); }
.text-warning .module-icon { background-color: rgba(255, 193, 7, 0.1); }
.text-info .module-icon { background-color: rgba(13, 202, 240, 0.1); }

.dashboard-card:hover .module-icon {
    transform: scale(1.15) rotate(5deg);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--sporthouse-dark);
}

.card-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.section-title {
    color: var(--sporthouse-dark);
    border-left: 5px solid var(--sporthouse-primary);
    padding-left: 15px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.stat-card {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ============================================
   RESERVAS
   ============================================ */

.badge-vehiculo {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.badge-estado {
    font-size: 0.8em;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.btn-action {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 3px;
}

.resumen-pago {
    font-size: 0.85em;
}

.resumen-pago .pendiente {
    color: var(--danger-color);
    font-weight: 500;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

/* Estado de reservas */
.badge-pendiente { background-color: #ffc107; color: #000; }
.badge-confirmada { background-color: #28a745; color: #fff; }
.badge-completada { background-color: #6c757d; color: #fff; }
.badge-cancelada { background-color: #dc3545; color: #fff; }
.badge-no-show { background-color: #fd7e14; color: #fff; }

/* ============================================
   PARQUEADERO
   ============================================ */

.stat-card {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FORMULARIOS
   ============================================ */

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(51, 125, 160, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #2c5f7a;
    border-color: #2c5f7a;
}

.btn-success {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-success:hover {
    background-color: #5a9c2e;
    border-color: #5a9c2e;
}

/* ============================================
   CARDS
   ============================================ */

.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
}

.card-header {
    background: white;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    padding: var(--spacing-lg);
}

.card-body {
    padding: var(--spacing-lg);
}

/* ============================================
   TABLAS
   ============================================ */

.table {
    margin-bottom: 0;
}

.table thead th {
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    color: #6c757d;
}

.table-hover tbody tr {
    transition: background-color 0.2s;
}

/* ============================================
   MODALES
   ============================================ */

.modal-header {
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

/* ============================================
   ALERTAS
   ============================================ */

.alert {
    border-radius: var(--border-radius);
    border: none;
}

/* ============================================
   BADGES
   ============================================ */

.badge {
    padding: 0.35em 0.65em;
    font-weight: 600;
    border-radius: 0.25rem;
}

/* ============================================
   IMPRESIÓN - COMPROBANTES
   ============================================ */

@media print {
    .sidebar,
    .btn,
    .no-print {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0;
        padding: 0;
    }
    
    body {
        background: white;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

/* Formato Ticket POS */
@media print {
    @page {
        size: 80mm auto;
        margin: 0;
    }
    
    body {
        width: 80mm;
        margin: 0;
        padding: 5mm;
        font-size: 10pt;
    }
    
    .ticket-container {
        width: 100%;
    }
    
    .ticket-header {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .ticket-divider {
        border-top: 1px dashed #000;
        margin: 10px 0;
    }
    
    .ticket-cut {
        border-top: 1px dashed #000;
        margin-top: 20px;
        padding-top: 10px;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Ajustes responsive para sidebar */
@media (max-width: 992px) {
    :root {
        --sidebar-width: 250px;
    }
}

@media (max-width: 768px) {
    #sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 15px;
    }
    
    .stat-card {
        margin-bottom: var(--spacing-md);
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}

/* ============================================
   UTILIDADES
   ============================================ */

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }

.border-primary { border-color: var(--primary-color) !important; }
.border-secondary { border-color: var(--secondary-color) !important; }

/* Espaciado personalizado */
.p-custom { padding: var(--spacing-lg); }
.m-custom { margin: var(--spacing-lg); }

/* Sombras */
.shadow-custom-sm { box-shadow: var(--shadow-sm); }
.shadow-custom-md { box-shadow: var(--shadow-md); }
.shadow-custom-lg { box-shadow: var(--shadow-lg); }

/* Bordes redondeados */
.rounded-custom { border-radius: var(--border-radius); }
.rounded-custom-lg { border-radius: var(--border-radius-lg); }
.rounded-custom-xl { border-radius: var(--border-radius-xl); }


/* ============================================
   NUEVA RESERVA
   ============================================ */

/* Variables adicionales para nueva reserva */
:root {
    --accent-color: #ec6725;
    --neutral-color: #706f6f;
    --futbol-color: #70b437;
    --voleibol-color: #ec6725;
    --tejo-color: #337da0;
    --bolirana-color: #6f42c1;
}

/* Tarjetas de selección de deporte */
.deporte-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 25px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.deporte-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s;
}

.deporte-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.deporte-card:hover::before {
    opacity: 1;
}

.deporte-card.selected {
    border-color: currentColor;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.deporte-card.selected::before {
    opacity: 1;
}

.deporte-card.futbol {
    color: var(--futbol-color);
    background: linear-gradient(135deg, rgba(112, 180, 55, 0.1) 0%, rgba(112, 180, 55, 0.05) 100%);
    border: 2px solid rgba(112, 180, 55, 0.3);
}

.deporte-card.voleibol {
    color: var(--voleibol-color);
    background: linear-gradient(135deg, rgba(236, 103, 37, 0.1) 0%, rgba(236, 103, 37, 0.05) 100%);
    border: 2px solid rgba(236, 103, 37, 0.3);
}

.deporte-card.minitejo {
    color: var(--tejo-color);
    background: linear-gradient(135deg, rgba(51, 125, 160, 0.1) 0%, rgba(51, 125, 160, 0.05) 100%);
    border: 2px solid rgba(51, 125, 160, 0.3);
}

.deporte-card.bolirana {
    color: var(--bolirana-color);
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.1) 0%, rgba(111, 66, 193, 0.05) 100%);
    border: 2px solid rgba(111, 66, 193, 0.3);
}

.deporte-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.deporte-card:hover .deporte-icon {
    transform: scale(1.1);
}

.deporte-card.futbol .deporte-icon {
    color: var(--futbol-color);
}

.deporte-card.voleibol .deporte-icon {
    color: var(--voleibol-color);
}

.deporte-card.minitejo .deporte-icon {
    color: var(--tejo-color);
}

.deporte-card.bolirana .deporte-icon {
    color: var(--bolirana-color);
}

/* Tarjetas de canchas */
.cancha-card {
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.cancha-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.cancha-card.selected {
    border-color: var(--accent-color);
    background-color: rgba(236, 103, 37, 0.05);
    box-shadow: 0 5px 15px rgba(236, 103, 37, 0.15);
}

.price-display {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.availability-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

/* Formulario general */
.form-section {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.total-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    padding: 25px;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.total-section h4,
.total-section p {
    color: white;
}

.total-section .price-display {
    color: white;
    font-size: 2rem;
}


/* ============================================
   LOGIN PAGE
   ============================================ */

body.login-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image: url('../images/fondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

body.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.login-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: rgba(255, 255, 255, 0.78);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo-img {
    max-height: 120px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.brand-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-card .form-group {
    margin-bottom: 25px;
}

.login-card .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-card .input-group {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-card .input-group-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    padding: 12px 20px;
    font-size: 1.1rem;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card .form-control {
    border: 2px solid #e0e0e0;
    border-left: none;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s;
}

.login-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-login {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(55, 136, 216, 0.4);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 136, 216, 0.6);
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.login-footer p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card {
    animation: fadeIn 0.6s ease-out;
}
