
.btn-outline-primary {
    color: #002C5A;
    border-color: #002C5A;
}

.btn-outline-primary:hover {
    background-color: #002C5A;
    border: none;
}

/* Copy all the CSS from the previous login page */
.login-page-container { min-height: 100vh; background: #f8f9fa; }
.login-wrapper { min-height: 100vh; }
.brand-content { position: relative; z-index: 2; max-width: 500px; }
.brand-logo { max-height: 50px; filter: brightness(0) invert(1); }
.brand-heading { font-size: 2.5rem; font-weight: 700; line-height: 1.2; }
.brand-text { font-size: 1.1rem; line-height: 1.6; }
.feature-item { font-size: 1rem; }
.login-form-side {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: white;
}
.form-container { width: 100%; max-width: 480px; }
.form-title { font-size: 1.75rem; font-weight: 700; color: #1e293b; }
.form-subtitle { font-size: 0.95rem; }
.login-form .form-label { color: #475569; font-size: 0.9rem; margin-bottom: 0.5rem; }
.login-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.login-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
    outline: none;
}
.login-form .form-control.is-invalid { border-color: #dc3545; }
.input-with-icon { position: relative; }
.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 10;
}
.input-with-icon .form-control { padding-left: 3rem; }
.submit-btn {
    background: linear-gradient(135deg, #dc3545 0%, #81121c 100%);
    border: none;
    border-radius: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}
.social-btn {
    border-width: 2px;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.divider-with-text {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}
.divider-with-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}
.divider-text {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: #94a3b8;
    font-size: 0.875rem;
    z-index: 2;
}
.forgot-link { color: #667eea; font-size: 0.9rem; font-weight: 500; }
.forgot-link:hover { color: #764ba2; text-decoration: underline !important; }
.register-link { color: #667eea; }
.register-link:hover { color: #764ba2; text-decoration: underline !important; }
@media (max-width: 991px) {
    .login-brand-side { display: none; }
    .login-form-side { padding: 2rem 1.5rem; }
    .form-title { font-size: 1.5rem; }
}
@media (max-width: 576px) {
    .login-form-side { padding: 1.5rem 1rem; }
    .form-container { max-width: 100%; }
    .form-title { font-size: 1.3rem; }
    .submit-btn, .social-btn { padding: 0.75rem 1rem; font-size: 0.95rem; }
}

/* ==========================================
   SLIDER CONTAINER
   ========================================== */

.brand-slider-container {
    position: relative;
    width: 100%;
    /*height: 100vh;*/
    height: 100%;
    overflow: hidden;
}

.brand-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ==========================================
   SLIDER ITEMS
   ========================================== */

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    z-index: 3;
}

.slide-inner {
    max-width: 550px;
    width: 100%;
}

/* ==========================================
   SLIDE ELEMENTS
   ========================================== */

.slide-logo {
    display: inline-block;
    margin-bottom: 3rem;
}

.brand-logo {
    max-height: 50px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.slide-logo:hover .brand-logo {
    transform: scale(1.05);
}

.slide-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   FEATURE BADGES
   ========================================== */

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-badge i {
    font-size: 1.1rem;
}

/* ==========================================
   STATS
   ========================================== */

.slide-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   BENEFITS LIST
   ========================================== */

.slide-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1rem;
}

.benefit-item i {
    color: #4ade80;
    font-size: 1.25rem;
}

/* ==========================================
   TESTIMONIAL
   ========================================== */

.slide-testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.testimonial-text {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.author-name {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.author-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* ==========================================
   NAVIGATION DOTS
   ========================================== */

.slider-navigation {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.nav-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* ==========================================
   PROGRESS BAR
   ========================================== */

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: white;
    width: 0%;
    animation: progressAnimation 5s linear infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-item.active .animate-in {
    animation: slideInUp 0.8s ease-out forwards;
}

.slider-item.active .delay-1 {
    animation-delay: 0.2s;
}

.slider-item.active .delay-2 {
    animation-delay: 0.4s;
}

.slider-item.active .delay-3 {
    animation-delay: 0.6s;
}

/* Initial state for animations */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1400px) {
    .slide-heading {
        font-size: 2.25rem;
    }

    .slide-inner {
        max-width: 480px;
    }
}

@media (max-width: 1200px) {
    .slide-heading {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .slide-stats {
        padding: 1rem 1.5rem;
    }
}
