﻿        body {
            margin: 0;
            min-height: 100vh;
            font-family: Mulish, sans-serif;
            color: #231535;
            overflow-x: hidden;
            background:
                radial-gradient(circle at top left, rgba(255, 0, 122, 0.18), transparent 24%),
                linear-gradient(135deg, #4f00ab 0%, #6516d7 58%, #ff0a78 100%);
        }

        .auth-shell {
            min-height: 100vh;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 32px;
        }

        .auth-layout {
            width: min(1180px, 100%);
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            border-radius: 40px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 30px 90px rgba(23, 3, 49, 0.32);
            backdrop-filter: blur(12px);
        }

        .auth-hero {
            position: relative;
            padding: 56px;
            color: #fff;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
        }

        .auth-hero::before {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            top: -80px;
            right: -80px;
        }

        .auth-hero::after {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            border-radius: 42px;
            background: rgba(255, 196, 31, 0.16);
            left: -60px;
            bottom: -100px;
            transform: rotate(34deg);
        }

        .auth-hero > * {
            position: relative;
            z-index: 1;
        }

        .auth-back {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 44px;
            color: #fff;
            text-decoration: none;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .auth-back:hover {
            color: #fff1ae;
        }

        .auth-eyebrow {
            margin-bottom: 14px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-weight: 800;
        }

        .auth-title {
            margin: 0;
            font-size: clamp(2.6rem, 5vw, 5rem);
            line-height: 0.94;
            text-transform: uppercase;
            font-weight: 900;
            max-width: 480px;
        }

        .auth-text {
            max-width: 470px;
            margin: 22px 0 0;
            color: rgba(255, 255, 255, 0.86);
            font-size: 1.05rem;
            line-height: 1.75;
        }

        .auth-points {
            margin: 34px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 14px;
        }

        .auth-points li {
            display: flex;
            align-items: center;
            min-height: 56px;
            padding: 0 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.14);
            font-weight: 700;
            color: #fff;
        }

        .auth-card {
            background: #fff;
            padding: 56px 48px;
        }

        .auth-card__eyebrow {
            margin-bottom: 10px;
            color: #8a6ba9;
            font-size: 0.88rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-weight: 800;
        }

        .auth-card__title {
            margin: 0 0 12px;
            font-size: 2.2rem;
            line-height: 1;
            color: #231535;
            font-weight: 900;
            text-transform: uppercase;
        }

        .auth-card__text {
            margin: 0 0 28px;
            color: #5b4b70;
            line-height: 1.7;
        }

        .auth-alert {
            margin-bottom: 20px;
            padding: 16px 18px;
            border-radius: 20px;
            background: #fff0f2;
            color: #a52640;
            border: 1px solid #ffd2dc;
            font-weight: 700;
        }

        .auth-field + .auth-field {
            margin-top: 16px;
        }

        .auth-label {
            display: block;
            margin-bottom: 8px;
            color: #342049;
            font-size: 0.95rem;
            font-weight: 800;
        }

        .auth-input {
            width: 100%;
            height: 58px;
            padding: 0 18px;
            border-radius: 18px;
            border: 1px solid rgba(106, 22, 223, 0.14);
            background: #faf7ff;
            color: #231535;
            font-size: 1rem;
            box-sizing: border-box;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .auth-input:focus {
            outline: none;
            border-color: #6a16df;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(106, 22, 223, 0.10);
        }

        .auth-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 60px;
            margin-top: 24px;
            border: none;
            border-radius: 999px;
            background: linear-gradient(180deg, #ffd13f 0%, #ffc41f 100%);
            color: #4c2b00;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-size: 1rem;
            font-weight: 900;
            cursor: pointer;
            box-shadow: 0 18px 34px rgba(255, 196, 31, 0.24);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .auth-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 38px rgba(255, 196, 31, 0.28);
        }

        .auth-footer {
            margin-top: 24px;
            color: #5b4b70;
            text-align: center;
            line-height: 1.7;
        }

        .auth-footer a {
            color: #5400b0;
            font-weight: 800;
            text-decoration: none;
        }

        .auth-footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 991px) {
            .auth-layout {
                grid-template-columns: 1fr;
            }

            .auth-hero,
            .auth-card {
                padding: 32px 24px;
            }
        }

        @media (max-width: 576px) {
            .auth-shell {
                padding: 16px;
            }

            .auth-layout {
                border-radius: 28px;
            }

            .auth-title {
                font-size: 2.3rem;
            }

            .auth-card__title {
                font-size: 1.8rem;
            }
        }
    
