 /* Login Modal Styles */
    .modal-content {
        background: #0a0a0a;
        border: 1px solid #2d3238;
        border-radius: 20px;
        padding: 2rem;
        position: relative;
    }

    .btn-close-modal {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 36px;
        height: 36px;
        background: #1a1d23;
        border: 1px solid #2d3238;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8b92a7;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .btn-close-modal:hover {
        background: #252a31;
        border-color: #0d6efd;
        color: #0d6efd;
        transform: rotate(90deg);
    }

    .modal-brand-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .modal-logo-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #0d6efd, #0a58ca);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
    }

    .modal-brand-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
    }

    .modal-header-text {
        text-align: center;
    }

    .modal-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .modal-subtitle {
        color: #8b92a7;
        margin-bottom: 0;
    }

    .login-form .form-label {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .login-form .form-control {
        background: #1a1d23;
        border: 1px solid #2d3238;
        color: #ffffff;
        padding: 0.875rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .login-form .form-control:focus {
        background: #252a31;
        border-color: #0d6efd;
        color: #ffffff;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    }

    .login-form .form-control::placeholder {
        color: #6c757d;
    }

    .password-input-wrapper {
        position: relative;
    }

    .password-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: #8b92a7;
        cursor: pointer;
        padding: 0.5rem;
        transition: color 0.3s ease;
    }

    .password-toggle:hover {
        color: #0d6efd;
    }

    .form-check-input {
        background-color: #1a1d23;
        border-color: #2d3238;
        cursor: pointer;
    }

    .form-check-input:checked {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

    .form-check-label {
        color: #8b92a7;
        font-size: 0.9rem;
        cursor: pointer;
    }

    .forgot-link {
        color: #0d6efd;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .forgot-link:hover {
        color: #0a58ca;
        text-decoration: underline;
    }

    .btn-primary {
        background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
        border: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.6);
    }

    .divider {
        text-align: center;
        margin: 1.5rem 0;
        position: relative;
    }

    .divider::before,
    .divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 45%;
        height: 1px;
        background: #2d3238;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

    .divider span {
        background: #0a0a0a;
        padding: 0 1rem;
        color: #8b92a7;
        font-size: 0.9rem;
    }

    .social-login {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-social {
        background: #1a1d23;
        border: 1px solid #2d3238;
        color: #ffffff;
        padding: 0.875rem 1rem;
        border-radius: 10px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .btn-social:hover {
        background: #252a31;
        border-color: #0d6efd;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .register-link {
        color: #0d6efd;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .register-link:hover {
        color: #0a58ca;
        text-decoration: underline;
    }

    /* Modal Backdrop */
    .modal-backdrop {
        background-color: rgba(0, 0, 0, 0.8);
    }

    /* Responsive */
    @media (max-width: 575.98px) {
        .modal-content {
            padding: 1.5rem;
        }

        .modal-title {
            font-size: 1.5rem;
        }

        .modal-brand-name {
            font-size: 1.25rem;
        }

        .btn-close-modal {
            top: 1rem;
            right: 1rem;
        }
    }