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

        :root {
            --primary-purple: #8B5CF6;
            --primary-purple-dark: #7C3AED;
            --accent-pink: #EC4899;
            --bg-dark: #17152a;
            --bg-dark-secondary: #1A1A2E;
            --text-light: #F9FAFB;
            --text-gray: #9CA3AF;
            --success-green: #10B981;
            --error-red: #EF4444;
            --warning-yellow: #F59E0B;
                --font-family-sans-serif: "poppins", sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        }


        .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
            margin-bottom: .5rem;
            font-family: poppins, sans-serif;
            font-weight: 300;
            line-height: 1.2;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            min-height: fit-content;
            overflow-x: hidden;
        }

        /* OLOGIN BUTTON  */


        .login{overflow-y: auto;}

        .login-box{overflow: hidden;}

        .login-btn{font-size: 14px; }
        /* Loading Overlay */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 15, 35, 0.98);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            backdrop-filter: blur(10px);
        }

        .loading-overlay.active {
            display: flex;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .loader {
            width: 120px;
            height: 120px;
            position: relative;
        }

        .loader::before,
        .loader::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .loader::before {
            width: 120px;
            height: 120px;
            border: 4px solid var(--primary-purple);
            animation: rotate 1.5s linear infinite;
        }

        .loader::after {
            width: 80px;
            height: 80px;
            border: 4px solid var(--accent-pink);
            top: 20px;
            left: 20px;
            animation: rotate 1s linear infinite reverse;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .loading-text {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 18px;
            font-weight: 500;
            color: var(--text-light);
            animation: textPulse 1.5s ease-in-out infinite;
        }

        @keyframes textPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* Main Container */
        .container {
            display: flex;
            min-height: 100vh;
            transition: filter 0.3s ease-out;width: 100vw;
            left: 0;
    right: 0;
    position: relative;
        }

        .container.faded {
            filter: blur(5px) brightness(0.7);
        }

        /* Left Side - Form */
        .form-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px 40px;
            background: linear-gradient(135deg, #1A1A2E 0%, #16162A 100%);
            position: relative;
            overflow: hidden;
            height: 100vh;
        }

        .form-side::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-20px, -20px) scale(1.1); }
        }

        .logo-section {
            margin-bottom: 40px;
            animation: slideDown 0.6s ease-out;
            z-index: 9;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-light);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 24px;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 700;
        }

        .logo-text .minor {
            /*color: var(--primary-purple);*/
            font-size: 20px;
            font-weight: 100;
        }

        .form-container {
            width: 100%;
            max-width: 440px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-header {
            margin-bottom: 30px;
        }

        .form-title {
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 0px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .form-subtitle {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
        }

        .form-input {
            width: 100%;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            font-size: 16px;
            color: var(--text-light);
            font-family: 'DM Sans', sans-serif;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-purple);
            background: rgba(139, 92, 246, 0.05);
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
        }

        .form-input::placeholder {
            color: var(--text-gray);
        }

        .form-input.error {
            border-color: var(--error-red);
            background: rgba(239, 68, 68, 0.05);
        }

        .error-message {
            font-size: 13px;
            color: var(--error-red);
            margin-top: 6px;
            display: none;
            font-weight: 500;
        }

        .error-message.show {
            display: block;
            animation: shake 0.3s ease-in-out;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-8px); }
            75% { transform: translateX(8px); }
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--primary-purple);
        }

        .checkbox-group label {
            color: var(--text-gray);
            cursor: pointer;
        }

        .forgot-link {
            color: var(--primary-purple);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .forgot-link:hover {
            color: var(--accent-pink);
        }

        .submit-btn {
            width: 100%;
            padding: 8px;
            /*background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);*/
            background: #8b5cf6;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
            font-family: 'DM Sans', sans-serif;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
        }

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

        .submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .divider {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 30px 0;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        .divider-text {
            font-size: 14px;
            color: var(--text-gray);
        }

        .social-login {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .social-btn {
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: 'DM Sans', sans-serif;
        }

        .social-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .signup-link {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: var(--text-gray);
        }

        .signup-link a {
            color: var(--primary-purple);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .signup-link a:hover {
            color: var(--accent-pink);
        }

        /* Right Side - Hero */
        .hero-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 40px;
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: orbFloat 6s ease-in-out infinite;
        }

        .hero-orb-1 {
            width: 400px;
            height: 400px;
            background: var(--primary-purple);
            top: 10%;
            right: -10%;
            opacity: 0.2;
        }

        .hero-orb-2 {
            width: 300px;
            height: 300px;
            background: var(--accent-pink);
            bottom: 10%;
            left: -10%;
            opacity: 0.15;
            animation-delay: -3s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            text-align: center;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .hero-highlight {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 16px;
        }

        .hero-link {
            color: var(--primary-purple);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .hero-link:hover {
            color: var(--accent-pink);
        }

        .hero-visual {
            margin-top: 60px;
            width: 100%;
            max-width: 500px;
            aspect-ratio: 16/10;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%); }
            100% { transform: translateX(100%) translateY(100%); }
        }

        .hero-visual-icon {
            font-size: 80px;
            position: relative;
            z-index: 1;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-side {
                display: none;
            }

            .form-side {
                flex: none;
                width: 100%;
            }
        }

        @media (max-width: 640px) {
            .form-side {
                padding: 40px 24px;
            }

            .form-title {
                font-size: 32px;
            }

            .form-subtitle {
                font-size: 14px;
            }

            .logo-text {
                font-size: 24px;
            }

            .social-login {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-description {
                font-size: 16px;
            }
        }


        .login .wavy-container {
    padding-top: 0px;
    padding-bottom: 70px;
    bottom: -85vh;
    position: absolute;
}

        .logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background-image: url(/images/logo/icon-white.png);
    background-size: contain;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

        .hero-ring {
      position: absolute;
    bottom: -208px;
    left: -40px;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    z-index: 2;
    opacity: 0.25;}

               .hero-ring2 {
      position: absolute;
    top: -208px;
    right: -235px;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    z-index: 2;
    opacity: 0.25;}


        .hero-orb-2 {
    position: absolute;
    top: -140px;
    right: -65px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #ec4899 100%);
    border-radius: 50%;
    opacity: 0.8;
    z-index: 1;
    filter: blur(10px);
}

        /* ======================================== */
        /* FORGOT PASSWORD PAGE SPECIFIC STYLES */
        /* ======================================== */

        .forgot-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .back-to-login {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: var(--text-gray);
        }

        .back-to-login a {
            color: var(--primary-purple);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .back-to-login a:hover {
            color: var(--accent-pink);
        }

        /* Success State */
        .success-container {
            display: none;
            text-align: center;
        }

        .success-container.active {
            display: block;
            animation: fadeInUp 0.6s ease-out;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: scaleIn 0.5s ease-out;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-icon svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        .success-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-light);
        }

        .success-message {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .success-email {
            color: var(--primary-purple);
            font-weight: 600;
        }

        .resend-section {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: var(--text-gray);
        }

        .resend-link {
            color: var(--primary-purple);
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .resend-link:hover {
            color: var(--accent-pink);
        }

        .resend-link.disabled {
            color: var(--text-gray);
            cursor: not-allowed;
            opacity: 0.5;
        }

        /* ======================================== */
        /* VERIFY EMAIL PAGE SPECIFIC STYLES */
        /* ======================================== */

        .verify-container {
            text-align: center;
        }

        /* Verifying State */
        .verifying-state {
            display: none;
        }

        .verifying-state.active {
            display: block;
            animation: fadeInUp 0.6s ease-out;
        }

        .verify-spinner {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            position: relative;
        }

        .verify-spinner::before,
        .verify-spinner::after {
            content: '';
            position: absolute;
            border-radius: 50%;
        }

        .verify-spinner::before {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(139, 92, 246, 0.2);
            border-top-color: var(--primary-purple);
            animation: spin 1s linear infinite;
        }

        .verify-spinner::after {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(236, 72, 153, 0.2);
            border-top-color: var(--accent-pink);
            top: 10px;
            left: 10px;
            animation: spin 0.7s linear infinite reverse;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .verify-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-light);
        }

        .verify-message {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* Success State (already defined in forgot password section but adding verify-specific if needed) */
        .success-state {
            display: none;
        }

        .success-state.active {
            display: block;
            animation: fadeInUp 0.6s ease-out;
        }

        /* Error State */
        .error-state {
            display: none;
        }

        .error-state.active {
            display: block;
            animation: fadeInUp 0.6s ease-out;
        }

        .error-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--error-red) 0%, #dc2626 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: scaleIn 0.5s ease-out;
        }

        .error-icon svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        /* Expired State */
        .expired-state {
            display: none;
        }

        .expired-state.active {
            display: block;
            animation: fadeInUp 0.6s ease-out;
        }

        .expired-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--warning-yellow) 0%, #d97706 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: scaleIn 0.5s ease-out;
        }

        .expired-icon svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        /* ======================================== */
        /* CHECK EMAIL PAGE SPECIFIC STYLES */
        /* ======================================== */

        .check-email-container {
            text-align: center;
        }

        .email-sent-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: scaleIn 0.5s ease-out;
            position: relative;
        }

        .email-sent-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
            opacity: 0.3;
            animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        @keyframes ping {
            75%, 100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .email-sent-icon svg {
            width: 40px;
            height: 40px;
            color: white;
            position: relative;
            z-index: 1;
        }

        .user-email {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-purple);
            margin-top: 8px;
            word-break: break-word;
        }

        .email-instructions {
            margin: 40px 0;
            text-align: left;
        }

        .instruction-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .instruction-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateX(4px);
        }

        .instruction-number {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--text-light);
        }

        .instruction-text {
            flex: 1;
        }

        .instruction-text strong {
            display: block;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 4px;
        }

        .instruction-text p {
            font-size: 14px;
            color: var(--text-gray);
            margin: 0;
        }

        .help-section {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: var(--text-gray);
        }

        .help-link {
            color: var(--primary-purple);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .help-link:hover {
            color: var(--accent-pink);
        }

        /* Notification Toast */
        .notification-toast {
            position: fixed;
            top: 24px;
            right: 24px;
            background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
            z-index: 10000;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }

        .notification-toast.show {
            opacity: 1;
            transform: translateY(0);
        }

        .notification-toast svg {
            flex-shrink: 0;
        }

        /* Button with icon */
        .submit-btn svg {
            vertical-align: middle;
        }

        /* ======================================== */
        /* CHECK EMAIL VERIFICATION PAGE (CENTERED) */
        /* ======================================== */

        .check-email-page {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        .check-email-wrapper {
            width: 100%;
            max-width: 520px;
            padding: 40px 24px;
            margin: 0 auto;
        }

        .check-email-content {
            text-align: center;
        }

        .logo-section-center {
            margin-bottom: 60px;
            animation: slideDown 0.6s ease-out;
        }

        .logo-section-center .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-light);
        }

        .email-verification-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 32px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: scaleIn 0.5s ease-out;
            position: relative;
        }

        .email-verification-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
            opacity: 0.3;
            animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        .email-verification-icon svg {
            width: 40px;
            height: 40px;
            color: white;
            position: relative;
            z-index: 1;
        }

        .check-email-message {
            margin-bottom: 40px;
        }

        .check-email-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .check-email-subtitle {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .user-email-display {
            display: inline-block;
            font-weight: 600;
            color: var(--primary-purple);
            margin-top: 8px;
        }

        .check-email-instructions {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
            max-width: 400px;
            margin: 0 auto;
        }

        .resend-section-center {
            margin-top: 32px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: var(--text-gray);
        }

        .resend-link-center {
            color: var(--primary-purple);
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .resend-link-center:hover {
            color: var(--accent-pink);
        }

        .resend-link-center.disabled {
            color: var(--text-gray);
            cursor: not-allowed;
            opacity: 0.5;
        }

        .back-to-login-center {
            margin-top: 32px;
            font-size: 14px;
        }

        .back-to-login-center a {
            color: var(--primary-purple);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .back-to-login-center a:hover {
            color: var(--accent-pink);
        }

        /* Responsive adjustments */
        @media (max-width: 640px) {
            .check-email-title {
                font-size: 28px;
            }

            .check-email-subtitle {
                font-size: 15px;
            }

            .logo-section-center {
                margin-bottom: 40px;
            }

            .email-verification-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 24px;
            }

            .email-verification-icon svg {
                width: 35px;
                height: 35px;
            }
        }