/* Registration System Styles */
:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --success-gradient: linear-gradient(135deg, #0ca526 0%, #72c407 100%);
    --purple-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-main: #1e293b;
    --text-muted: #64748b;
}

body {
    background: var(--purple-gradient);
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.registration-container {
    max-width: 600px;
    width: 100%;
}

.glass-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.form-control-pill {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-control-pill:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.btn-primary-pill {
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-pill:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.2);
}

.slug-preview {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.slug-preview strong {
    color: var(--primary-color);
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

    to {
        transform: scale(1);
    }
}