/* ==========================================
   SNAPNOTES THEME - CSS Variables & Base Styles
   ========================================== */

:root {
    /* Primary Brand Colors */
    --teal: #02B2B2;
    --teal-dark: #019999;
    --purple: #6A0DAD;
    --purple-dark: #210F47;
    --purple-600: #9333EA;
    --purple-900: #4C1D95;

    /* Secondary Colors */
    --pink-extrabold: #aa15d3;
    --pink-bold: #B575BB;
    --pink: #8F7491;
    --pink-light: #F9EBF5;
    --pink-lightest: #FAF5FF;

    /* Grays */
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray: #666666;
    --gray-light: #CCCCCC;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;

    /* Text Colors */
    --text-primary: #070612;
    --text-secondary: #4E3B50;
    --text-muted: #666666;
    --text-light: #FFFFFF;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #f9fafb;
    --bg-purple-light: #faf5ff;

    /* Border Colors */
    --border-light: #e5e7eb;
    --border-muted: #EDE9FE;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Typography */
    --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Merriweather', Georgia, serif;

    /* Spacing */
    --section-padding-y: 96px;
    --section-padding-x: 24px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 250ms ease;
    --transition-slow: 350ms ease;

    /* Z-index */
    --z-dropdown: 10;
    --z-sticky: 20;
    --z-fixed: 30;
    --z-modal-backdrop: 40;
    --z-modal: 50;
}

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

.container-lg {
    max-width: 1400px;
}

.container-sm {
    max-width: 800px;
}

.section {
    padding: var(--section-padding-y) var(--section-padding-x);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--text-light); }
.text-purple { color: var(--purple); }
.text-teal { color: var(--teal); }
.text-gray { color: var(--text-muted); }

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Spacing utilities */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--teal);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(2, 178, 178, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 178, 178, 0.4);
}

.btn-secondary {
    background-color: var(--purple);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(106, 13, 173, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 13, 173, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
}

.btn-outline:hover {
    background-color: var(--purple);
    color: var(--text-light);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding-y: 72px;
    }

    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }

    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding-y: 56px;
        --section-padding-x: 16px;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .grid-cols-2,
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }
}
/* =========================================
   GLOBAL PAGE CONTAINER
========================================= */
.page-wrapper {
    padding-top: 60px;
    padding-bottom: 100px;
}

.page-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 24px;
}
.register-card {
    background: #fff;
    border-radius: 14px;
    padding: 48px;
    border: 1px solid var(--border-muted);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
