* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;

            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                         "SF Pro Text", Inter, Arial, sans-serif;

            background:
                radial-gradient(circle at 15% 20%, rgba(120, 160, 255, .28), transparent 32%),
                radial-gradient(circle at 85% 75%, rgba(180, 100, 255, .22), transparent 32%),
                radial-gradient(circle at 50% 100%, rgba(80, 220, 190, .12), transparent 35%),
                #080a0f;

            color: #fff;
        }

        /* Ambient light */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
        }

        .orb-1 {
            width: 280px;
            height: 280px;
            background: rgba(85, 130, 255, .22);
            top: -80px;
            left: -70px;
        }

        .orb-2 {
            width: 320px;
            height: 320px;
            background: rgba(170, 80, 255, .18);
            right: -100px;
            bottom: -100px;
        }

        .login-wrapper {
            position: relative;
            width: 100%;
            max-width: 420px;
            padding: 20px;
        }

        .glass-card {
            position: relative;
            overflow: hidden;

            padding: 42px 36px;

            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 30px;

            background:
                linear-gradient(
                    145deg,
                    rgba(255, 255, 255, .14),
                    rgba(255, 255, 255, .045)
                );

            backdrop-filter: blur(30px) saturate(150%);
            -webkit-backdrop-filter: blur(30px) saturate(150%);

            box-shadow:
                0 30px 80px rgba(0, 0, 0, .45),
                inset 0 1px 0 rgba(255, 255, 255, .16),
                inset 0 -1px 0 rgba(255, 255, 255, .04);
        }

        /* Glass reflection */
        .glass-card::before {
            content: "";
            position: absolute;
            width: 180px;
            height: 400px;

            top: -180px;
            left: -80px;

            background: linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,.10),
                transparent
            );

            transform: rotate(28deg);
            pointer-events: none;
        }

        .logo {
    width: 200px;
    height: 200px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
}

.logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(0 12px 25px rgba(0, 0, 0, .35))
        drop-shadow(0 0 18px rgba(30, 210, 255, .10));
}

        .title {
            text-align: center;
            font-size: 30px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .subtitle {
            margin-top: 8px;
            text-align: center;

            color: rgba(255,255,255,.58);
            font-size: 14px;
        }

        .form {
            margin-top: 30px;
        }

        .field {
            margin-bottom: 15px;
        }

        .field label {
            display: block;
            margin-bottom: 8px;

            font-size: 12px;
            color: rgba(255,255,255,.65);
        }

        .input-box {
            position: relative;
        }

        .input-box input {
            width: 100%;
            height: 54px;

            padding: 0 17px;

            color: white;
            font-size: 14px;

            outline: none;

            border-radius: 17px;
            border: 1px solid rgba(255,255,255,.11);

            background: rgba(255,255,255,.055);

            box-shadow:
                inset 0 1px 0 rgba(255,255,255,.06);

            transition: .25s ease;
        }

        .input-box input::placeholder {
            color: rgba(255,255,255,.30);
        }

        .input-box input:focus {
            border-color: rgba(255,255,255,.28);

            background: rgba(255,255,255,.08);

            box-shadow:
                0 0 0 4px rgba(255,255,255,.035),
                inset 0 1px 0 rgba(255,255,255,.08);
        }

        .login-btn {
            width: 100%;
            height: 54px;

            margin-top: 10px;

            border: 1px solid rgba(255,255,255,.18);
            border-radius: 17px;

            color: white;
            font-size: 14px;
            font-weight: 600;

            cursor: pointer;

            background:
                linear-gradient(
                    135deg,
                    rgba(255,255,255,.22),
                    rgba(255,255,255,.08)
                );

            box-shadow:
                inset 0 1px 0 rgba(255,255,255,.20),
                0 12px 30px rgba(0,0,0,.18);

            transition: .25s ease;
        }

        .login-btn:hover {
            transform: translateY(-1px);

            background:
                linear-gradient(
                    135deg,
                    rgba(255,255,255,.29),
                    rgba(255,255,255,.12)
                );

            box-shadow:
                inset 0 1px 0 rgba(255,255,255,.25),
                0 16px 35px rgba(0,0,0,.25);
        }

        .login-btn:active {
            transform: scale(.985);
        }

        .footer {
            margin-top: 25px;

            text-align: center;

            font-size: 11px;
            color: rgba(255,255,255,.35);
        }

        @media (max-width: 480px) {
            .login-wrapper {
                padding: 15px;
            }

            .glass-card {
                padding: 34px 24px;
                border-radius: 26px;
            }

            .title {
                font-size: 27px;
            }
        }