                body {
            font-family: system-ui, -apple-system, sans-serif;
            background: linear-gradient(180deg, #1a1a2e 0%, #0a4377 100%);
            color: #fff;
            overflow: hidden;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }

        canvas {
            position: fixed;
            top: 0;
            left: 0;

            z-index: 1;
        }

        .login-card {
            width: 100%;
            max-width: 28rem;
            background-color: rgb(7 22 44 / 64%);
            backdrop-filter: blur(8px);
            padding: clamp(1.5rem, 5vw, 2rem);
            border-radius: 1rem;
            border: 1px solid #ffffff1f;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            margin: 1rem;
            z-index:99;
        }

        .icon-circle {
            width: clamp(3rem, 8vw, 4rem);
            height: clamp(3rem, 8vw, 4rem);
            background-color: rgba(37, 99, 235, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lock-icon {
            width: clamp(24px, 5vw, 32px);
            height: clamp(24px, 5vw, 32px);
            color: #3b82f6;
        }

        .custom-input {
            border: 1px solid rgba(51, 65, 85, 0.8) !important;
            transition: all 0.2s;
            font-size: clamp(14px, 3.5vw, 16px);
        }

        .custom-input::placeholder {
            color: #9CA3AF !important;
        }

        .info-box {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
            padding: 0.75rem;
            background-color: rgba(30, 41, 59, 0.3);
            border-radius: 0.5rem;
            border-color: #ffffff1f !important;
        }

        .info-box svg {
            flex-shrink: 0;
            color: #94a3b8;
            margin-top: 0.125rem;
            width: clamp(16px, 4vw, 20px);
            height: clamp(16px, 4vw, 20px);
        }

        .info-box p {
            color: #94a3b8;
            font-size: clamp(12px, 3vw, 14px);
            line-height: 1.5;
        }

        .custom-btn {
            background-color: #2563eb !important;
            border-color: #2563eb !important;
            padding: clamp(0.5rem, 2vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
            font-weight: 500;
            transition: background-color 0.2s;
            font-size: clamp(14px, 3.5vw, 16px);
        }

        .custom-btn:hover {
            background-color: #1d4ed8 !important;
            border-color: #1d4ed8 !important;
        }

        .back-link {
            color: #94a3b8;
            transition: color 0.2s;
            font-size: clamp(14px, 3.5vw, 16px);
        }

        .back-link:hover {
            color: white;
        }

        .back-link svg {
            width: clamp(14px, 3.5vw, 16px);
            height: clamp(14px, 3.5vw, 16px);
        }

        .support-link {
            color: #94a3b8;
            transition: color 0.2s;
            font-size: clamp(12px, 3vw, 14px);
        }

        .support-link:hover {
            color: white;
        }

        h1.h3 {
            font-size: clamp(1.5rem, 5vw, 1.75rem);
        }

        .small {
            font-size: clamp(12px, 3vw, 14px);
        }

        .form-label {
            font-size: clamp(14px, 3.5vw, 16px);
        }

        /* Media Queries for different screen sizes */
        @media (max-width: 480px) {
            .login-card {
                margin: 1rem;
            }

            .container {
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }
        }

        @media (max-height: 600px) {
            .container {
                padding-top: 1rem;
                padding-bottom: 1rem;
            }

            .login-card {
                margin-top: 0.5rem;
                margin-bottom: 0.5rem;
            }
        }

        /* Handle very small screens */
        @media (max-width: 320px) {
            .info-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .info-box svg {
                margin-top: 0;
                margin-bottom: 0.5rem;
            }
        }