<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: #f5f5f7;
            color: #2d2f39;
            overflow-x: hidden;
        }

        /* Banded Row Colors */
        .banded-row {
            background: #ffffff;
            transition: background-color 0.3s ease;
        }

        .banded-row:nth-child(odd) {
            background: #f8f9fc;
        }

        .banded-row:nth-child(even) {
            background: #ffffff;
        }

        /* Custom Scrollbar - Using specified gradient */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #e9e9ed;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #2f4bd8 0%, #5b2bbf 100%);
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #4f68e0 0%, #7a4fd0 100%);
        }

        /* Abstract Background Shapes */
        .abstract-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            background: linear-gradient(135deg, rgba(47, 75, 216, 0.05), rgba(91, 43, 191, 0.05));
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            filter: blur(60px);
            animation: shapeMove 30s ease-in-out infinite;
        }

        .shape-1 {
            width: 600px;
            height: 600px;
            top: -200px;
            right: -200px;
            background: linear-gradient(135deg, rgba(47, 75, 216, 0.08), rgba(91, 43, 191, 0.05));
        }

        .shape-2 {
            width: 500px;
            height: 500px;
            bottom: -150px;
            left: -150px;
            background: linear-gradient(135deg, rgba(91, 43, 191, 0.06), rgba(47, 75, 216, 0.04));
            animation-delay: -15s;
        }

        .shape-3 {
            width: 400px;
            height: 400px;
            top: 30%;
            left: 40%;
            background: linear-gradient(135deg, rgba(47, 75, 216, 0.05), rgba(91, 43, 191, 0.03));
            animation-delay: -7s;
        }

        @keyframes shapeMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            33% { transform: translate(40px, -30px) rotate(5deg) scale(1.1); }
            66% { transform: translate(-30px, 40px) rotate(-5deg) scale(0.95); }
        }

        /* Purple-Teal Gradient Navbar - UPDATED */
        .navbar-gradient {
            background: #ffffff;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
            border-bottom: 2px solid;
            border-image: linear-gradient(90deg, #2f4bd8, #5b2bbf) 1;
            padding: 1rem 0;
        }

        .navbar-brand {
            position: relative;
        }

        .navbar-brand img {
            height: 48px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: drop-shadow(0 4px 6px rgba(47, 75, 216, 0.15));
        }

        .navbar-brand:hover img {
            transform: scale(1.05) rotate(-1deg);
            filter: drop-shadow(0 8px 12px rgba(47, 75, 216, 0.25));
        }

        .nav-link {
            color: #2d2f39 !important;
            font-weight: 500;
            margin: 0 1.2rem;
            position: relative;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #2f4bd8, #5b2bbf);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #2f4bd8 !important;
            transform: translateY(-2px);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Uncommon Login Card */
        .login-card {
            background: #ffffff;
            border: none;
            border-radius: 32px;
            box-shadow: 
                0 30px 60px rgba(47, 75, 216, 0.08),
                0 0 0 1px #eaeaef;
            padding: 2.5rem;
            transition: all 0.4s ease;
            animation: cardFloat 6s ease-in-out infinite;
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .login-card:hover {
            box-shadow: 
                0 40px 80px rgba(47, 75, 216, 0.12),
                0 0 0 1px #d4d4de;
        }

        /* Purple-Teal Button - UPDATED */
        .gradient-btn {
            background: linear-gradient(135deg, #2f4bd8, #5b2bbf);
            border: none;
            border-radius: 28px;
            padding: 1rem 1.5rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            font-size: 1rem;
        }

        .gradient-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .gradient-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 30px -10px rgba(47, 75, 216, 0.4);
        }

        .gradient-btn:hover::before {
            left: 100%;
        }

        /* Feature Cards with Banded Colors */
        .feature-card {
            background: #ffffff;
            border: none;
            border-radius: 32px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #eaeaef;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
            height: 100%;
        }

        .banded-row .feature-card {
            background: #ffffff;
        }

        .banded-row:nth-child(odd) .feature-card {
            background: #f8f9fc;
            border-color: #e2e2e8;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(47, 75, 216, 0.08);
            border-color: #2f4bd840;
        }

        .feature-icon {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #2f4bd8, #5b2bbf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        /* Collaboration Section - Ash & White */
        .collab-section {
            background: #ffffff;
            border-radius: 40px;
            padding: 4rem 2rem;
            border: 1px solid #eaeaef;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
            position: relative;
        }

        .partner-logo {
            max-height: 70px;
            filter: grayscale(0%) brightness(0.95);
            opacity: 0.8;
            transition: all 0.4s ease;
            margin: 1.5rem 2rem;
        }

        .partner-logo:hover {
            filter: grayscale(0) brightness(1.1);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Institution Cards with Banded Colors */
        .institution-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.3rem;
            background: #ffffff;
            border-radius: 24px;
            transition: all 0.3s ease;
            border: 1px solid #eaeaef;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
        }

        .banded-row .institution-item {
            background: #f8f9fc;
        }

        .institution-item:hover {
            background: #ffffff;
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(47, 75, 216, 0.08);
            border-color: #5b2bbf40;
        }

        .institution-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            border-radius: 16px;
            transition: transform 0.3s ease;
            background: #f0f0f5;
            padding: 8px;
        }

        .institution-item:hover .institution-logo {
            transform: rotate(3deg) scale(1.05);
        }

        /* Purple-Teal Footer - UPDATED */
        .footer-gradient {
            background: linear-gradient(145deg, #2f4bd8, #5b2bbf);
            padding: 4rem 0 2rem;
            margin-top: 5rem;
            color: #ffffff;
            position: relative;
        }

        .footer-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #ffffff, transparent);
        }

        .footer-gradient p, .footer-gradient .text-muted {
            color: #ffffff !important;
        }

        /* Gradient Text - UPDATED */
        .gradient-heading {
            background: linear-gradient(135deg, #2f4bd8, #5b2bbf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        /* Instructions Card - Ash & White */
        .instructions-card {
            background: #ffffff;
            border-radius: 28px;
            padding: 2rem;
            border: 1px solid #eaeaef;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
            position: relative;
        }

        .banded-row .instructions-card {
            background: #f8f9fc;
        }

        .instructions-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2f4bd8, #5b2bbf);
            border-radius: 28px 28px 0 0;
        }

        .instruction-item {
            padding: 1rem 0;
            border-bottom: 1px solid #eaeaef;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .instruction-item:last-child {
            border-bottom: none;
        }

        .instruction-item:hover {
            transform: translateX(8px);
            background: #f5f5fa;
            border-radius: 16px;
            padding-left: 1rem;
        }

        .instruction-item i {
            color: #2f4bd8;
            font-size: 1.2rem;
        }

        /* Form Elements */
        .form-control {
            border-radius: 24px;
            border: 1px solid #eaeaef;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #ffffff;
        }

        .form-control:focus {
            border-color: #2f4bd8;
            box-shadow: 0 0 0 4px rgba(47, 75, 216, 0.1);
            background: #ffffff;
            outline: none;
        }

        .form-label {
            font-weight: 500;
            color: #2d2f39;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-label i {
            color: #2f4bd8;
        }

        /* Loading Animation */
        .loading-spinner {
            width: 24px;
            height: 24px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Badge Design */
        .badge-custom {
            background: #f0f0f5;
            color: #2d2f39;
            border: 1px solid #d4d4de;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .badge-custom i {
            color: #2f4bd8;
        }

        /* Section Backgrounds - Banded */
        section.banded-row {
            padding: 5rem 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .login-card {
                margin-top: 2rem;
                padding: 2rem;
            }
            
            .feature-card {
                padding: 2rem;
            }
            
            .gradient-heading {
                font-size: 2.2rem;
            }
            
            .partner-logo {
                margin: 1rem;
                max-height: 50px;
            }
        }

        /* Utility Classes */
        .text-purple-teal {
            color: #2f4bd8;
        }

        .border-purple-teal {
            border-color: #2f4bd840;
        }

        .bg-ash {
            background: #f8f9fc;
        }

        .bg-white {
            background: #ffffff;
        }
    </style>