        :root {
            color-scheme: light !important;
            --primary-50: 240, 248, 255;
            --primary-100: 224, 242, 254;
            --primary-400: 56, 189, 248;
            --primary-500: 2, 64, 124;
            --primary-600: 1, 51, 100
        }

        body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8fafc;
            font-family: 'DM Sans', sans-serif;
            color: #1e293b;
            background-image: radial-gradient(ellipse 80% 60% at 10% 10%, rgba(70, 111, 156, .07) 0, transparent 60%), radial-gradient(ellipse 60% 50% at 90% 90%, rgba(201, 162, 39, .06) 0, transparent 60%), linear-gradient(rgba(70, 111, 156, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(70, 111, 156, .03) 1px, transparent 1px);
            background-size: auto, auto, 48px 48px, 48px 48px
        }

        .login-card {
            width: 100%;
            max-width: 28rem;
            background: #fff;
            border-radius: 1rem;
            box-shadow: 0 4px 6px -1px rgba(11, 31, 58, .06), 0 20px 60px -10px rgba(11, 31, 58, .18), 0 0 0 1px rgba(11, 31, 58, .07);
            overflow: hidden;
            animation: cardEnter .7s cubic-bezier(.22, 1, .36, 1) both;
            position: relative;
            display: flex;
            flex-direction: column;
            margin: 1.5rem
        }

        @keyframes cardEnter {
            0% {
                opacity: 0;
                transform: translateY(24px) scale(.97)
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1)
            }
        }

        .login-header {
            position: relative;
            background-color: rgba(241, 245, 249, .6);
            padding: 2.5rem 2.5rem 3rem 2.5rem;
            text-align: center
        }

        .header-arc::after {
            content: '';
            position: absolute;
            bottom: -36px;
            left: 50%;
            transform: translateX(-50%);
            width: 160%;
            height: 72px;
            background: #fff;
            border-radius: 50%;
            z-index: 1
        }

        .login-header-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center
        }

        .logo-img {
            height: 8rem;
            object-fit: contain;
            margin-bottom: 1.5rem;
            pointer-events: none;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #02407C;
            margin: 0;
            letter-spacing: -.025em;
            line-height: 1.25
        }

        .subtitle {
            margin-top: .375rem;
            font-size: 11px;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: .16em;
            font-weight: 700
        }

        .login-form-area {
            position: relative;
            z-index: 10;
            padding: 2rem 2rem 2.5rem 2rem
        }

        .login-form-area label,
        .login-form-area .fi-fo-field-wrp-label,
        .login-form-area .fi-fo-field-wrp-label span {
            color: #334155 !important;
            font-weight: 500 !important;
            display: block;
            margin-bottom: 0.25rem;
        }

        .login-form-area .fi-fo-field-wrp {
            margin-bottom: 0 !important;
        }

        .login-form-area .fi-form-component-container,
        .login-form-area [class*="gap-"] {
            gap: 0.75rem !important;
        }

        .login-form-area .fi-input-wrp {
            background-color: #fff !important;
            border: 1px solid #cbd5e1 !important;
            box-shadow: none !important
        }

        .login-form-area .fi-input-wrp:focus-within {
            border-color: #02407C !important;
            box-shadow: 0 0 0 1px #02407C !important
        }

        .login-form-area input:not([type="checkbox"]) {
            color: #0f172a !important;
            background-color: transparent !important
        }

        .login-form-area input[type="checkbox"] {
            border-color: #cbd5e1 !important;
            background-color: white !important
        }

        .fi-btn-color-primary {
            background-color: #02407C !important;
            color: #fff !important;
            border: none !important
        }

        .fi-btn-color-primary:hover {
            background-color: #013364 !important
        }

        .login-footer {
            padding: 1rem 2rem;
            background-color: #f8fafc;
            text-align: center;
            border-top: 1px solid #f1f5f9
        }

        .return-link {
            font-size: 11px;
            color: #94a3b8;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: .025em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: color .2s
        }

        .return-link:hover {
            color: #02407C
        }

        .return-link svg {
            width: 14px;
            height: 14px
        }