

        /* Responsive background for mobile */
        @media (max-width: 768px) {
            body {
                background-attachment: scroll;
            }
        }

        .bg-pink {
            background-color: rgba(165, 28, 48, 0.95);
            backdrop-filter: blur(10px);
        }

        .logo_span {
            color: white;
            font-family: 'Oswald', sans-serif;
            font-size: 18px;
            font-weight: 600;
        }

        .logo_span_blue {
            color: #bddefc;
            font-family: 'Oswald', sans-serif;
            font-size: 16px;
            font-weight: 400;
        }

        .nav-link-custom {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 18px !important;
        }

        /* Make navbar more compact */
        .navbar {
            padding-top: 0.25rem !important;
            padding-bottom: 0.25rem !important;
            min-height: 50px;
        }

        .navbar-brand img {
            width: 55px !important;
        }

        .logo_span,
        .logo_span_blue {
            font-size: 16px;
        }

        .nav-link-custom {
            font-size: 14px !important;
            padding-top: 6px !important;
            padding-bottom: 6px !important;
        }

        .main-section {
            flex: 1;
            padding: 50px 0;
            display: flex;
            /*align-items: center;*/
            justify-content: center;
        }

        .login-card {
            border-radius: 1rem;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .notice-card {
            border-radius: 1rem;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .btn-primary {
            background-color: #a51c30;
            border: none;
            padding: 12px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #8b1627;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(165, 28, 48, 0.3);
        }

        .btn-danger {
            background-color: #dc3545;
            border: none;
            padding: 12px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-danger:hover {
            background-color: #c82333;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(220, 53, 69, 0.3);
        }

        .site-footer {
            margin-top: auto;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
        }

        .form-label {
            color: #333;
            font-weight: 600;
        }

        .text-primary {
            color: #a51c30 !important;
        }

        /* Select2 Custom Style */
        .select2-container--default .select2-selection--single {
            height: 45px;
            padding: 8px 12px;
            font-size: 0.95rem;
            border-radius: 0.375rem;
            border: 1px solid #dee2e6;
            background-color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }

        .select2-container--default .select2-selection--single:hover {
            border-color: #a51c30;
            box-shadow: 0 0 0 0.2rem rgba(165, 28, 48, 0.15);
        }

        .select2-container .select2-selection--single .select2-selection__rendered {
            line-height: 28px;
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 43px;
        }

        /* Toast notification styles */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .login-card {
                margin: 20px;
                padding: 2rem;
            }

            .main-section {
                padding: 30px 0;
            }

            .navbar-brand {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .login-card {
                margin: 15px;
                padding: 1.5rem;
            }

            .logo_span,
            .logo_span_blue {
                font-size: 0.9rem;
            }
        }

        /* Animation for card entrance */
        .login-card {
            animation: slideInUp 0.6s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Loading spinner */
        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid #ffffff;
            border-top: 2px solid transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 8px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .developed-by {
    color: white;
    text-decoration: underline;
    text-decoration-style: dotted;
    cursor: pointer;
    font-weight: 500;
}