@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #10b981;
    --primary-glow: rgba(16, 185, 129, 0.5);
    --secondary: #fbbf24;
    --secondary-glow: rgba(251, 191, 36, 0.4);
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: rgba(30, 41, 59, 0.6);
    --text-main: #f8fafc;
    --text-light: rgba(248, 250, 252, 0.8);
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    --navbar-bg: rgba(15, 23, 42, 0.85);
    --card-bg: rgba(30, 41, 59, 0.6);
    --input-bg: rgba(15, 23, 42, 0.6);
    --input-border: rgba(255, 255, 255, 0.1);
}

/* ===== LIGHT MODE OVERRIDES ===== */
body.light-mode {
    --bg-dark: #f1f5f9;
    --bg-darker: #e2e8f0;
    --bg-card: rgba(255, 255, 255, 0.85);
    --text-main: #0f172a;
    --text-light: #1e293b;
    --text-muted: #475569;
    --glass-border: rgba(0, 0, 0, 0.1);
    --navbar-bg: rgba(241, 245, 249, 0.92);
    --card-bg: rgba(255, 255, 255, 0.85);
    --input-bg: rgba(241, 245, 249, 0.9);
    --input-border: rgba(0, 0, 0, 0.15);
}

body.light-mode {
    background-color: #f1f5f9;
    color: #0f172a;
}

body.light-mode .navbar {
    background: rgba(241, 245, 249, 0.92) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

body.light-mode .nav-brand,
body.light-mode .nav-brand span { color: #0f172a !important; }

body.light-mode .nav-links a {
    color: #1e293b !important;
}

body.light-mode .nav-links a:hover { color: var(--primary) !important; }

body.light-mode .hero {
    background-image:
        linear-gradient(to right, rgba(241, 245, 249, 0.92) 0%, rgba(226, 232, 240, 0.85) 100%),
        url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

body.light-mode .hero h1,
body.light-mode .hero p { color: #0f172a; }

body.light-mode .hero h1 span { color: var(--primary); }

body.light-mode .glass-card {
    background: rgba(255,255,255,0.85) !important;
    border-color: rgba(0,0,0,0.1) !important;
    color: #0f172a;
}

body.light-mode .glass-card h2,
body.light-mode .glass-card h3,
body.light-mode .glass-card h4,
body.light-mode .glass-card p,
body.light-mode .glass-card li { color: #1e293b; }

body.light-mode section { background: #f1f5f9; }

body.light-mode .section-header h2,
body.light-mode .section-header p { color: #0f172a; }

body.light-mode footer {
    background: #1e293b !important;
    color: #f8fafc;
}

body.light-mode footer p,
body.light-mode footer a { color: #94a3b8 !important; }

body.light-mode .bg-blob-1, 
body.light-mode .bg-blob-2 { opacity: 0.15; }

body.light-mode ::-webkit-scrollbar-track { background: #e2e8f0; }

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 1.5px solid var(--glass-border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: rotate(20deg);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, .nav-brand {
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* Background Blobs for Modern Effect */
.bg-blob-1, .bg-blob-2 {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.bg-blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.bg-blob-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.2); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar (Glassmorphism) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand span {
    background: linear-gradient(to right, var(--primary), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-brand i {
    color: var(--primary);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #059669);
    color: white !important;
    box-shadow: 0 10px 20px -5px var(--primary-glow);
}

.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 ease;
    z-index: -1;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.3);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background-image: 
        linear-gradient(to right, rgba(2, 6, 23, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%),
        url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 0 20px var(--secondary-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background: var(--primary);
    opacity: 0.3;
    border-radius: 4px;
    filter: blur(4px);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Glass Cards (Features) */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.glass-card:hover::before { opacity: 1; }

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(16, 185, 129, 0.2);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 0 20px var(--primary-glow);
    position: relative;
    z-index: 1;
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* PPDB Advanced Section */
.ppdb-dashboard {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.ppdb-dashboard::after {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}

.ppdb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ppdb-info h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.ppdb-info .free-badge {
    background: linear-gradient(135deg, var(--secondary), #f59e0b);
    color: #000;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px -5px var(--secondary-glow);
    transform: rotate(-2deg);
}

.timeline {
    border-left: 2px solid rgba(16, 185, 129, 0.3);
    padding-left: 30px;
    margin-top: 40px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.timeline-item h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.timeline-item p {
    color: var(--text-muted);
}

.req-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 40px;
}

.req-box h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.req-list {
    list-style: none;
}

.req-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    color: #cbd5e1;
}

.req-list li:last-child { border: none; padding-bottom: 0; }

.req-list li i {
    color: var(--primary);
    background: rgba(16, 185, 129, 0.1);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.9rem;
}

.cta-wrapper {
    margin-top: 40px;
    text-align: center;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 30px;
    background: #020617;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 400px;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px var(--primary-glow);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: white;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 16px; }
.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--primary); }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--text-muted);
}
.contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 4px;
}
.contact-item strong { color: white; display: block; margin-bottom: 4px; }

/* Data Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }

[data-reveal].active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Mobile Responsive */
.mobile-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .ppdb-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .mobile-btn { display: block; }
    .nav-links {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 0;
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s ease;
    }
    .nav-links.active { clip-path: circle(150% at 100% 0); }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .ppdb-dashboard { padding: 30px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- Registration Page App Styles --- */
.register-page {
    background: radial-gradient(circle at top, #0f172a 0%, #020617 100%);
}

.register-wrapper {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.7);
    position: relative;
    z-index: 2;
}

.back-btn {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s;
    font-weight: 500;
}
.back-btn:hover { color: var(--primary); }

.register-header {
    text-align: center;
    margin-bottom: 40px;
}

.register-header h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 0%;
    background: var(--primary);
    z-index: -1;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--primary-glow);
}

.progress-container::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; transform: translateY(-50%);
    height: 4px; width: 100%;
    background: rgba(255,255,255,0.1);
    z-index: -2;
}

.progress-step {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.4s;
}

.progress-step.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.step-title i { color: var(--primary); }

.input-group {
    margin-bottom: 24px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-field {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s;
}

.input-field:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.input-field i {
    padding: 0 16px;
    color: var(--text-muted);
}

.input-field input, .input-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 16px 16px 0;
    color: white;
    font-size: 1rem;
    outline: none;
}

.input-field input[type="date"] {
    color-scheme: dark;
}

.textarea-field { align-items: flex-start; }
.textarea-field i { padding-top: 18px; }

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-card {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s;
    font-weight: 600;
}

.radio-card input:checked + span {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.upload-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.upload-card:hover {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
}

.upload-card i {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.upload-card:hover i { color: var(--primary); }

.upload-card h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: white;
}

.file-input { display: none; }

.upload-btn {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s;
}

.upload-btn:hover {
    background: var(--primary);
    color: white;
}

.form-actions {
    margin-top: 40px;
}

.form-actions.right { text-align: right; }
.form-actions.split { display: flex; justify-content: space-between; }

.success-message {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--primary);
    margin: 0 auto 30px;
    box-shadow: 0 0 30px var(--primary-glow);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.success-message h3 { font-size: 2rem; margin-bottom: 15px; }
.success-message p { color: var(--text-muted); max-width: 400px; margin: 0 auto 30px; }

@media (max-width: 768px) {
    .register-wrapper { padding: 30px 20px; }
    .input-row { grid-template-columns: 1fr; gap: 0; }
    .form-actions.split { flex-direction: column-reverse; gap: 15px; }
    .form-actions.split button { width: 100%; justify-content: center; }
}
