  body {
            background-color: #f0f2f5;
            background-image:
                radial-gradient(at 0% 0%, rgba(37, 226, 0, 0.08) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(37, 226, 0, 0.05) 0px, transparent 50%);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            font-family: 'Satoshi-Variable', sans-serif;
            -webkit-font-smoothing: antialiased;
            padding: 2rem;
            font-weight: 300;
        }

        /* Decorative Elements */
        .bg-shape {
            position: absolute;
            z-index: -1;
            filter: blur(80px);
            border-radius: 50%;
            opacity: 0.3;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--mm-action);
            top: -10%;
            left: -10%;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: #60a5fa;
            bottom: -20%;
            right: -10%;
        }

        .register-card {
            width: 100%;
            max-width: 520px;
            padding: 3.5rem;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 32px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            animation: mm-slide-up 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .logo-container {
            text-align: center;
            margin-bottom: 2rem;
        }

        .logo-container img {
            height: 40px;
        }

        h3 {
            font-size: 1.75rem;
            font-weight: 500;
            color: var(--mm-text-main);
            margin-bottom: 0.5rem;
            text-align: center;
            letter-spacing: -0.03em;
        }

        .subtitle {
            font-size: 0.9rem;
            color: var(--mm-text-muted);
            margin-bottom: 2.5rem;
            text-align: center;
            line-height: 1.5;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group.full {
            grid-column: span 2;
        }

        .form-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.65rem;
            font-weight: 500;
            color: var(--mm-text-muted);
            margin-bottom: 0.5rem;
            letter-spacing: 0.08em;
        }

        .input-control {
            width: 100%;
            padding: 0.875rem 1rem;
            background: rgba(241, 245, 249, 0.7);
            border: 2px solid transparent;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
            box-sizing: border-box;
            color: var(--mm-text-main);
        }

        .input-control:focus {
            outline: none;
            border-color: var(--mm-action);
            background: white;
            box-shadow: 0 0 0 4px var(--mm-action-soft);
        }

        .actions {
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .btn-primary {
            background-color: var(--mm-text-main);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .btn-primary:hover {
            background-color: var(--mm-action);
            transform: translateY(-2px);
        }

        @keyframes mm-slide-up {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }