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

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* Centering wrapper — fills remaining height so footer stays at bottom */
        .page-center {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 28px 20px;
        }

        .container {
            display: flex;
            gap: 40px;
            max-width: 1200px;
            width: 100%;
            position: relative;
        }

        /* Animated Background Shapes */
        .background-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 20s infinite ease-in-out;
        }

        .shape1 {
            width: 350px;
            height: 350px;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .shape2 {
            width: 250px;
            height: 250px;
            bottom: -80px;
            left: -80px;
            animation-delay: 7s;
        }

        .shape3 {
            width: 200px;
            height: 200px;
            top: 40%;
            left: 10%;
            animation-delay: 14s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            33% {
                transform: translate(-30px, 30px) rotate(120deg);
            }

            66% {
                transform: translate(20px, -20px) rotate(240deg);
            }
        }

        /* Register Card */
        .register-card {
            background: white;
            border-radius: 30px;
            padding: 45px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            width: 100%;
            max-width: 550px;
            position: relative;
            z-index: 1;
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Logo */
        .logo-container {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo-text {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }

        .daniel {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s infinite linear;
            background-size: 200% 200%;
        }

        .ha {
            color: #f5576c;
            margin-left: 8px;
            animation: bounce 2s infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .tagline {
            color: #6b7280;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        /* Welcome Text */
        .welcome-text {
            font-size: 26px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .subtitle {
            color: #6b7280;
            font-size: 14px;
            margin-bottom: 25px;
        }

        /* Form */
        .register-form {
            margin-bottom: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            color: #374151;
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 13px;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 15px;
            width: 18px;
            height: 18px;
            color: #9ca3af;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-group input {
            width: 100%;
            padding: 13px 15px 13px 42px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 14px;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
        }

        .form-group input:focus {
            outline: none;
            border-color: #f093fb;
            box-shadow: 0 0 0 4px rgba(240, 147, 251, 0.1);
        }

        .toggle-password {
            position: absolute;
            right: 15px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .eye-icon {
            width: 18px;
            height: 18px;
            color: #9ca3af;
            transition: color 0.3s;
            font-size: 14px;
        }

        .toggle-password:hover .eye-icon {
            color: #f093fb;
        }

        /* Password Strength */
        .password-strength {
            margin-top: 8px;
        }

        .strength-bar {
            height: 4px;
            background: #e5e7eb;
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 5px;
        }

        .strength-fill {
            height: 100%;
            width: 0;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .strength-text {
            font-size: 12px;
            color: #6b7280;
            font-weight: 500;
        }

        /* Terms Checkbox */
        .terms-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 13px;
            color: #4b5563;
            cursor: pointer;
        }

        .terms-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: #f093fb;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .terms-checkbox a {
            color: #f093fb;
            text-decoration: none;
            font-weight: 500;
        }

        .terms-checkbox a:hover {
            text-decoration: underline;
        }

        /* Register Button */
        .btn-register {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .btn-register:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3);
        }

        .btn-register:active {
            transform: translateY(0);
        }

        .arrow-icon {
            width: 18px;
            height: 18px;
            transition: transform 0.3s;
            font-size: 14px;
        }

        .btn-register:hover .arrow-icon {
            transform: translateX(5px);
        }

        .btn-register:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            margin: 22px 0;
            color: #9ca3af;
            font-size: 12px;
            font-weight: 500;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e5e7eb;
        }

        .divider span {
            padding: 0 15px;
        }

        /* Social Login */
        .social-login {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 22px;
        }

        .btn-social {
            padding: 11px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 500;
            font-size: 13px;
            transition: all 0.3s;
        }

        .btn-social:hover {
            border-color: #d1d5db;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-social i {
            font-size: 15px;
        }

        .btn-social.google {
            color: #4285F4;
        }

        .btn-social.facebook {
            color: #1877F2;
        }

        /* Login Prompt */
        .login-prompt {
            text-align: center;
            padding-top: 18px;
            border-top: 1px solid #e5e7eb;
        }

        .login-prompt p {
            color: #6b7280;
            font-size: 14px;
        }

        .login-link {
            color: #f093fb;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .login-link:hover {
            color: #f5576c;
            text-decoration: underline;
        }

        /* Benefits Sidebar */
        .benefits-sidebar {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 40px 30px;
            color: white;
            width: 100%;
            max-width: 350px;
            position: relative;
            z-index: 1;
            animation: slideInRight 0.8s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .teacher-profile {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255,255,255,0.15);
            border-radius: 16px;
            padding: 14px 16px;
            margin-bottom: 28px;
        }

        .teacher-avatar {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            object-fit: cover;
            object-position: center top;
            border: 2px solid rgba(255,255,255,0.5);
            flex-shrink: 0;
        }

        .teacher-name {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
        }

        .teacher-title {
            font-size: 12px;
            color: rgba(255,255,255,0.8);
            margin-top: 3px;
        }

        .benefits-sidebar h3 {
            font-size: 20px;
            margin-bottom: 22px;
            font-weight: 600;
        }

        .benefit-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
        }

        .benefit-number {
            font-size: 22px;
            min-width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-item h4 {
            font-size: 16px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .benefit-item p {
            font-size: 13px;
            opacity: 0.9;
            line-height: 1.5;
        }

        /* ── Site footer ── */
        .site-footer {
            text-align: center;
            padding: 14px 20px;
            font-size: 13px;
            color: rgba(255,255,255,.75);
            flex-shrink: 0;
        }
        .site-footer a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }
        .site-footer a:hover { text-decoration: underline; }

        /* ── Responsive ── */
        @media (max-width: 992px) {
            .benefits-sidebar { display: none; }
            .container { justify-content: center; }
        }

        /* Tablet */
        @media (max-width: 768px) {
            .page-center { padding: 16px 16px; }
            .register-card {
                padding: 36px 28px;
                border-radius: 24px;
                max-width: 100%;
            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .page-center { padding: 12px 12px; align-items: flex-start; padding-top: 20px; }
            .register-card {
                padding: 28px 20px;
                border-radius: 20px;
                box-shadow: 0 8px 32px rgba(0,0,0,.2);
            }
            .logo-container img { height: 64px !important; }
            .logo-container { margin-bottom: 20px; }
            .welcome-text { font-size: 20px; margin-bottom: 6px; }
            .subtitle { font-size: 13px; margin-bottom: 18px; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
            .form-group { margin-bottom: 14px; }
            .form-group input { padding: 11px 15px 11px 40px; font-size: 14px; }
            .btn-register { padding: 13px; font-size: 14px; }
            .social-login { grid-template-columns: 1fr; }
            .divider { margin: 16px 0; }
        }

        /* Very small phones */
        @media (max-width: 360px) {
            .register-card { padding: 24px 16px; border-radius: 16px; }
            .welcome-text { font-size: 18px; }
            .tagline { font-size: 11px; }
        }
