/* ==========================================
   REGISTER PAGE - MODERN DARK THEME
   ========================================== */

/* Root Variables - Matching App Theme */
:root {
    --primary-color: #667eea;
    --primary-dark: #5a6fd8;
    --secondary-color: #764ba2;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --bg-hover: #334155;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --border-color: #334155;
    --border-light: #475569;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    --animation-fast: 0.15s ease;
    --animation-normal: 0.3s ease;
    --animation-slow: 0.5s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a202c 100%);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding: 1.5rem;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Floating particles */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(118, 75, 162, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(59, 130, 246, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(102, 126, 234, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: floatParticles 20s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes floatParticles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Container */
.container {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    transition: all var(--animation-normal);
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 
        var(--shadow-xl),
        0 0 0 1px rgba(102, 126, 234, 0.1),
        0 0 50px rgba(102, 126, 234, 0.1);
}

/* Slides */
.slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 100%;
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    color: var(--text-primary);
    opacity: 0.95;
    transition: all var(--animation-normal);
}

.slide.active {
    opacity: 1;
}

.slide:not(.active) {
    pointer-events: none;
}

/* Slide-Specific Styles */
.register-slide {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-right: 1px solid var(--border-color);
}

.verify-email-slide {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-right: 1px solid var(--border-color);
}

.profile-slide {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-right: 1px solid var(--border-color);
}

.ai-slide {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-right: 1px solid var(--border-color);
}

.success-slide {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    text-align: center;
}

/* Slide Header */
.slide-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
    transition: all var(--animation-normal);
}

.logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
    transition: all var(--animation-normal);
}

/* Slide-specific icon styles */
.register-slide .icon-large {
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
}

.verify-email-slide .icon-large {
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
    animation: pulse 2s infinite;
}

.profile-slide .icon-large {
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
}

.ai-slide .icon-large {
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4));
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0% { filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4)); }
    100% { filter: drop-shadow(0 4px 16px rgba(245, 158, 11, 0.6)); }
}

.success-icon {
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.4));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.slide h2 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--animation-normal);
}

/* Slide-specific header styling */
.register-slide h2 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verify-email-slide h2 {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-slide h2 {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-slide h2 {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-slide h2 {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
}

/* Form Section */
.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Input Groups */
.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--animation-normal);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: inherit;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    background: var(--bg-tertiary);
}

/* Slide-specific input focus styles */
.verify-email-slide .input-group input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.profile-slide .input-group input:focus,
.profile-slide .field input:focus,
.profile-slide .field textarea:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.ai-slide .input-group input:focus,
.ai-slide .field input:focus,
.ai-slide .field textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.input-group input:hover:not(:focus) {
    border-color: var(--border-light);
    background: var(--bg-hover);
}

/* Input Icons */
.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    opacity: 0.7;
    transition: all var(--animation-fast);
    pointer-events: none;
}

.input-group:focus-within .input-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Password Strength */
.password-strength {
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}

.password-strength p {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    transition: all var(--animation-normal);
}

.password-strength .weak {
    color: var(--danger-color);
}

.password-strength .medium {
    color: var(--warning-color);
}

.password-strength .strong {
    color: var(--success-color);
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    background: var(--bg-card);
    color: var(--text-muted);
    padding: 0 1rem;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* Primary Button */
.btn-primary {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--animation-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Slide-specific button styles */
.profile-slide .btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.profile-slide .btn-primary:hover {
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.ai-slide .btn-primary {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.ai-slide .btn-primary:hover {
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.verify-email-slide .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #10b981);
}

.verify-email-slide .btn-primary:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.success-slide .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
}

.success-slide .btn-primary:hover {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* OAuth Buttons */
.oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.oauth-btn {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--animation-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.oauth-btn:hover {
    border-color: var(--primary-color);
    background: var(--bg-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.oauth-btn svg {
    flex-shrink: 0;
    transition: transform var(--animation-fast);
}

.oauth-btn:hover svg {
    transform: scale(1.1);
}

/* Google specific styling */
.google-btn:hover {
    border-color: #4285f4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
}

/* GitHub specific styling */
.github-btn:hover {
    border-color: #333;
    box-shadow: 0 4px 12px rgba(51, 51, 51, 0.15);
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--animation-normal);
    text-decoration: none;
    text-align: center;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: var(--bg-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.login-link p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--animation-fast);
}

.login-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Success States */
.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
}

/* Error States */
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--animation-normal);
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Progress Indicators */
.progress-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all var(--animation-normal);
}

.progress-dot.active {
    background: var(--primary-color);
    transform: scale(1.25);
}

.progress-dot.completed {
    background: var(--success-color);
}

/* Responsive Design */
@media (max-width: 640px) {
    body {
        padding: 1rem;
        align-items: center;
    }
    
    .container {
        max-width: 100%;
    }
    
    .slide {
        padding: 2rem;
    }
    
    .slide h2 {
        font-size: 1.75rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .navigation-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .slide {
        padding: 1.5rem;
    }
    
    .input-group input {
        padding: 0.875rem 2.5rem 0.875rem 1rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .input-icon {
        right: 0.75rem;
        font-size: 1rem;
    }
}

/* Loading States */
.btn-primary.loading,
.oauth-btn.loading {
    pointer-events: none;
    position: relative;
}

.btn-primary.loading::after,
.oauth-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

/* Hidden elements */
.hidden {
    display: none !important;
}

/* ==========================================
   PROFILE & AI SETUP SECTIONS
   ========================================== */

/* Profile Section */
.profile-section,
.ai-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Profile Picture Field */
.pfp-field {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--animation-normal);
}

.pfp-field:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.profile-slide .pfp-field {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.profile-slide .pfp-field:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.profile-slide .pfp-preview {
    background: linear-gradient(135deg, var(--bg-tertiary), rgba(139, 92, 246, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
}

.profile-slide .pfp-preview:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.pfp-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--animation-normal);
    border: 3px solid var(--border-color);
}

.pfp-preview:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.pfp-preview.ai-preview {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.1);
}

.pfp-preview.ai-preview:hover {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 
        0 0 0 2px rgba(245, 158, 11, 0.2),
        0 0 20px rgba(245, 158, 11, 0.3);
}

.ai-slide .pfp-field {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.ai-slide .pfp-field:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.pfp-placeholder {
    font-size: 2rem;
    color: var(--text-muted);
}

.pfp-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pfp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--animation-normal);
    border-radius: 50%;
}

.pfp-preview:hover .pfp-overlay {
    opacity: 1;
}

.pfp-overlay span {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.pfp-info {
    flex: 1;
}

.pfp-info h4 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pfp-info p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pfp-info input[type="file"] {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--animation-normal);
}

.pfp-info input[type="file"]:hover {
    border-color: var(--primary-color);
    background: var(--bg-hover);
}

/* Form Fields */
.field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.field input[type="text"],
.field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--animation-normal);
    resize: vertical;
    min-height: 44px;
}

.field input[type="text"]:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: var(--bg-card);
}

.field textarea {
    min-height: 100px;
    max-height: 200px;
    line-height: 1.5;
    font-family: inherit;
}

/* Character Counter */
.counter {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.25rem;
}

/* Verification Info */
.verification-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.verify-email-slide .verification-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--animation-normal);
}

.verify-email-slide .info-card {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-card h4 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.info-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Verify Actions */
.verify-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

/* Warning Card */
.warning-card {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-card h4 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--warning-color);
}

.warning-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Success Content */
.success-content {
    text-align: center;
}

.success-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.success-card h4 {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--success-color);
}

.success-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.success-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--animation-normal);
}

.feature-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

/* Auth Footer */
.auth-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.auth-footer p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.auth-footer .link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--animation-fast);
}

.auth-footer .link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Design for Profile Sections */
@media (max-width: 640px) {
    .pfp-field {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .pfp-preview {
        width: 100px;
        height: 100px;
    }
    
    .verify-actions {
        gap: 0.75rem;
    }
    
    .success-features {
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
}
