        body {
            font-family: 'Prompt', sans-serif; 
        }
        .gradient-bg {
            background: linear-gradient(135deg, #98221f 0%, #98221f 100%);
        }
        .text-primary-custom {
            color: #98221f !important;
        }
        .bg-primary-custom {
            background-color: #98221f !important;
        }
        .btn-primary-custom {
            background-color: #98221f;
            border-color: #98221f;
            color: white;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #c42f2c;
            border-color: #c42f2c;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(152, 34, 31, 0.3);
        }
        .login-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 900px;
            width: 100%;
        }
        .login-header {
            padding: 2.5rem;
        }
        .login-form {
            padding: 2.5rem;
        }
        .form-control:focus {
            border-color: #98221f;
            box-shadow: 0 0 0 0.25rem rgba(152, 34, 31, 0.25);
        }
        .form-floating>label {
            color: #6c757d;
        }
        .form-check-input:checked {
            background-color: #98221f;
            border-color: #98221f;
        }
        .social-login-btn {
            border: 1px solid #dee2e6;
            border-radius: 50px;
            padding: 0.6rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #495057;
        }
        .social-login-btn:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
        }
        .social-login-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .divider {
            display: flex;
            align-items: center;
            color: #6c757d;
            margin: 1.5rem 0;
        }
        .divider::before, .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #dee2e6;
        }
        .divider::before {
            margin-right: 1rem;
        }
        .divider::after {
            margin-left: 1rem;
        }
        .animate-in {
            animation: fadeIn 0.6s ease-out;
        }
        
        .logo-container {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .logo-text {
            font-size: 2rem;
            font-weight: bold;
            color: #98221f;
        }
        @media (max-width: 767.98px) {
    .login-card {
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
}