@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap);
/* 001 */

:root {
    /* 002 */
    --bg-primary: #FDF4F7;
    --bg-dashboard: #FCE7EE;
    --bg-warm: #FFF1F2;
    --bg-white: #FFFFFF;
    
    --text-primary: #1E1B2E;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    
    --accent-gold: #D97706;
    --accent-gold-hover: #B45309;
    --primary-blue: #0284C7;
    --primary-blue-hover: #0369A1;
    --accent-pink: #E11D48;
    --accent-pink-hover: #BE123C;
    
    --border-color: #F3D2E0;
    
    /* 003 */
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 22px;

    /* 004 */
    --shadow-xs: 0 1px 2px rgba(225,29,72,.03);
    --shadow-sm: 0 4px 12px rgba(225,29,72,.05);
    --shadow-md: 0 8px 24px rgba(225,29,72,.08);
    --shadow-lg: 0 14px 32px rgba(225,29,72,.10);
    --shadow-hover: 0 18px 40px rgba(225,29,72,.14);
    
    --container-width: 1280px;

    /* 005 */
    --fs-display: clamp(56px, 7vw, 72px);
    --fs-h1: clamp(42px, 5vw, 52px);
    --fs-h2: clamp(32px, 4vw, 38px);
    --fs-h3: clamp(22px, 3vw, 26px);
    --fs-body: 17px;
    --fs-small: 15px;
    --fs-label: 13px;

    /* 006 */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --space-10: 120px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    min-width: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: 1.75;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body {
  zoom: 80%; /* 007 */
}
/* 008 */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(225,29,72,.03) 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: .12;
    z-index: 0;
}

.auth-container {
    width: 100%;
    max-width: 440px;
    padding: 24px;
    position: relative;
    z-index: 10;
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
}

.card-header-icon {
    width: 48px;
    height: 48px;
    background: rgba(2, 132, 199, 0.1);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.card p {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.65;
}

/* 009 */
.google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
    box-shadow: var(--shadow-xs);
}

.google-btn:hover {
    background: var(--bg-warm);
    border-color: var(--primary-blue);
    color: var(--text-primary);
}

.google-btn:active {
    transform: scale(0.98);
}

/* 010 */
#extraDetailsModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 27, 46, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 24px;
}

.modal-card {
    background: var(--bg-white);
    width: 100%;
    max-width: 400px;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: left;
    border: 1px solid var(--border-color);
}

.modal-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.modal-card p {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: var(--fs-label);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus {
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(180deg, #38BDF8 0%, #0284C7 40%, #0369A1 100%);
    color: white;
    border: 1px solid #BAE6FD;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 8px;
    box-shadow: 0 6px 18px rgba(2,132,199,.2);
}

.submit-btn:hover {
    background: linear-gradient(180deg, #7DD3FC 0%, #0ea5e9 40%, #0284c7 100%);
}

.submit-btn:active {
    transform: scale(0.98);
}
