/* =====================================================
   OPTLYX PRISMA — LOGIN
   Neobrutalist + Premium Design System
   Playfair Display (display) + Plus Jakarta Sans (body)
   ===================================================== */

:root {
    --ink:     #0d0d0d;
    --paper:   #f5f0e8;
    --cream:   #fffdf7;
    --yellow:  #fef9c3;
    --muted:   #78716c;
    --stone:   #e7e0d3;
    --success: #16a34a;
    --error:   #dc2626;

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', 'Georgia', serif;
    --shadow: 4px 4px 0 var(--ink);
    --shadow-lg: 6px 6px 0 var(--ink);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
    font-family: var(--font);
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

/* ══════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════ */
.login-page {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* ── Left panel ── */
.panel-left {
    flex: 0 0 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 52px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-right: 3px solid var(--ink);
    background: rgba(255, 253, 247, 0.88);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    backdrop-filter: blur(16px) saturate(1.3);
    position: relative;
}
.panel-left::-webkit-scrollbar { display: none; }

/* Dot grid with parallax */
.login-dot-grid {
    position: absolute;
    inset: -40px;
    background-image: radial-gradient(circle, #c4b5a0 0.8px, transparent 0.8px);
    background-size: 32px 32px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Ambient floating shapes */
.login-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.login-float {
    position: absolute;
    border: 1.5px solid var(--ink);
    opacity: 0.04;
    will-change: transform;
}

.login-float-1 {
    width: 100px; height: 100px;
    top: 10%; right: 8%;
    animation: loginDrift1 22s ease-in-out infinite;
}
.login-float-2 {
    width: 60px; height: 60px;
    bottom: 18%; left: 12%;
    background: var(--yellow);
    border: none;
    opacity: 0.05;
    animation: loginDrift2 28s ease-in-out infinite;
}
.login-float-3 {
    width: 140px; height: 1.5px;
    top: 40%; right: 5%;
    background: var(--ink);
    border: none;
    opacity: 0.04;
    animation: loginDrift3 20s ease-in-out infinite;
}

@keyframes loginDrift1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(12px, -15px) rotate(6deg); }
    66% { transform: translate(-8px, 10px) rotate(-3deg); }
}
@keyframes loginDrift2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, -12px) rotate(-8deg); }
}
@keyframes loginDrift3 {
    0%, 100% { transform: translateX(0) scaleX(1); }
    50% { transform: translateX(-20px) scaleX(0.7); }
}

/* Noise texture */
.login-noise {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* Gradient mesh glow */
.login-mesh {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(254,249,195,0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: meshDrift 18s ease-in-out infinite;
}

@keyframes meshDrift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(25px, 15px); }
    66% { transform: translate(-15px, -10px); }
}

/* Animated gradient accent line */
.panel-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -3px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--ink) 0%, var(--yellow) 30%, var(--success) 60%, var(--ink) 100%);
    background-size: 100% 200%;
    animation: loginGradient 8s ease-in-out infinite;
    z-index: 3;
}

@keyframes loginGradient {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

/* Corner accents */
.login-corner {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: cornerIn 0.8s var(--ease-out) 0.8s forwards;
}
.login-corner-tl { top: 16px; left: 16px; }
.login-corner-br { bottom: 16px; right: 16px; }

@keyframes cornerIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.panel-left-inner {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Logo area ── */
.logo-area {
    text-align: center;
    margin-bottom: 40px;
}

/* Stagger override — JS handles the entrance animation */
.login-stagger {
    /* Initial state set by JS */
}

.logo {
    height: 38px;
    width: auto;
    filter: none;
}

.logo-tagline {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-top: 8px;
    opacity: 0.5;
}

.logo-area::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--stone);
    margin: 16px auto 0;
}

/* ── Headings ── */
.heading-block {
    text-align: center;
    margin-bottom: 32px;
}

.heading-block h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 12px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

.heading-block h1 em {
    font-style: italic;
    position: relative;
    display: inline-block;
}

/* Yellow highlight marker on em words */
.heading-block h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -3px;
    right: -3px;
    height: 8px;
    background: var(--yellow);
    z-index: -1;
    transform: skewX(-2deg);
    opacity: 0.6;
}

.subtitle {
    font-size: 15px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.65;
}

/* auth.js compat */
.heading-block h2, .card-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 10px;
}
.heading-block p, .card-header p, .card-subtitle {
    font-size: 14px;
    color: var(--muted);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Error ── */
.error-toast {
    background: rgba(220,38,38,0.08);
    border: 2px solid var(--error);
    color: var(--error);
    padding: 10px 14px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    display: none;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
}
.error-box { display: none; }

/* ══════════════════════════════════════════════
   FORM
   ══════════════════════════════════════════════ */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.field label {
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.field-hint {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.4;
    margin-top: -2px;
    opacity: 0.7;
}

.input-wrap { position: relative; }

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 0;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    outline: none;
    transition: box-shadow 0.25s var(--spring), transform 0.15s var(--spring);
}

input:focus {
    box-shadow: var(--shadow);
    transform: translate(-1px, -1px);
}

/* Field glow when focused */
.field-focused {
    position: relative;
}
.field-focused::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: radial-gradient(ellipse at center, rgba(254,249,195,0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: fieldGlow 0.3s var(--ease-out) forwards;
}
@keyframes fieldGlow {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

input::placeholder { color: var(--muted); opacity: 0.7; }

.mono-input {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    font-weight: 700;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.eye-toggle {
    position: absolute;
    right: 0; top: 0;
    height: 100%; width: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--muted);
    background: none; border: none;
    transition: color 0.15s;
}
.eye-toggle:hover { color: var(--ink); }

/* ── Primary Button ── */
.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: var(--ink);
    color: var(--yellow);
    border: 3px solid var(--ink);
    border-radius: 0;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: var(--shadow);
    transition: all 0.15s var(--spring);
    position: relative;
    overflow: hidden;
}

/* Ink spread on click */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(254, 249, 195, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out), opacity 0.5s;
    opacity: 0;
}
.btn-primary:active::after {
    width: 400px; height: 400px; opacity: 1; transition: 0s;
}

.btn-primary:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}
.btn-primary:disabled { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: var(--shadow); }

/* compat */
.btn-submit {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 52px;
    background: var(--ink); color: var(--yellow);
    border: 3px solid var(--ink); border-radius: 0;
    font-family: var(--font); font-size: 15px; font-weight: 800;
    cursor: pointer; gap: 8px;
    text-transform: uppercase; letter-spacing: 0.06em;
    box-shadow: var(--shadow);
    transition: all 0.15s var(--spring);
}
.btn-submit:disabled { opacity: 0.35; cursor: not-allowed; }

/* ── Legal / GDPR ── */
.legal-text {
    margin-top: 20px;
    width: 100%;
    opacity: 0;
    animation: fadeUp 0.5s var(--ease-out) 0.4s forwards;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

.consent-row input[type="checkbox"] {
    position: absolute;
    opacity: 0; width: 0; height: 0;
    pointer-events: none;
}

.consent-row .tick {
    width: 18px; height: 18px; min-width: 18px;
    border: 2px solid var(--ink);
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--paper);
    transition: all 0.2s var(--spring);
    margin-top: 1px;
    flex-shrink: 0;
}

.consent-row input:checked + .tick {
    background: var(--ink);
    border-color: var(--ink);
    transform: scale(1.05);
}

.consent-row input:checked + .tick::after {
    content: '';
    width: 4px; height: 8px;
    border: solid var(--yellow);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.consent-row a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
    font-weight: 600;
    transition: color 0.15s;
}
.consent-row a:hover { color: var(--muted); }

/* ── Field meta (forgot link under password) ── */
.field-meta {
    display: flex;
    justify-content: flex-end;
    margin-top: 2px;
}

.link-subtle {
    background: none; border: none;
    color: var(--muted);
    font-family: var(--font);
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 4px;
    transition: color 0.15s;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.link-subtle:hover { color: var(--ink); }

.back-row { text-align: center; margin-top: 8px; }

/* ── Bottom ── */
.bottom-action {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 2px solid var(--ink);
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}

.link-accent {
    background: none; border: none;
    color: var(--ink);
    font-family: var(--font);
    font-size: 13px; font-weight: 800;
    cursor: pointer; padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: opacity 0.15s;
}
.link-accent:hover { opacity: 0.7; }

/* ── Security badge ── */
.login-security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 16px 0 4px;
    font-size: 9.5px;
    font-weight: 700;
    color: #a3a3a3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.login-security-dot {
    width: 5px;
    height: 5px;
    background: var(--success);
    border-radius: 50%;
    flex-shrink: 0;
    animation: secPulse 2.5s ease-in-out infinite;
}

@keyframes secPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(22, 163, 74, 0); }
}

/* ══════════════════════════════════════════════
   JOIN TEAM
   ══════════════════════════════════════════════ */
#form-join-team > * + * { margin-top: 22px; }
#form-join-team > .heading-block { margin-bottom: 8px; }

.join-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 0;
    background: var(--yellow);
    border: 2px solid var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
    margin: 0 auto 18px;
}

.join-fields-row {
    display: flex;
    gap: 14px;
    width: 100%;
}

#form-join-team .btn-primary,
#btn-join-submit { margin-top: 28px; }

#form-join-team .back-row { margin-top: 16px; }

/* ══════════════════════════════════════════════
   RIGHT — Photo panel
   ══════════════════════════════════════════════ */
.panel-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: var(--ink);
}

.panel-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,13,13,0.05) 0%,
        rgba(13,13,13,0) 25%,
        rgba(13,13,13,0.35) 55%,
        rgba(13,13,13,0.94) 100%
    );
    pointer-events: none;
}

.panel-right-content {
    position: absolute;
    bottom: 52px;
    left: 52px;
    right: 52px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.6s var(--ease-out) 0.4s forwards;
}

.panel-right-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(254, 249, 195, 0.12);
    border: 1.5px solid rgba(254, 249, 195, 0.25);
    font-size: 11px;
    font-weight: 800;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.social-proof-dot {
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    animation: secPulse 2s ease-in-out infinite;
}

.panel-right-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.panel-right-content h2 em {
    font-style: italic;
    position: relative;
    display: inline-block;
}

.panel-right-content h2 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -3px;
    right: -3px;
    height: 6px;
    background: var(--yellow);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-2deg);
}

.panel-right-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 24px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.tag {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: none;
    transition: background 0.2s;
    backdrop-filter: blur(8px);
}

/* ── Stats bar at top of right panel ── */
.pr-stats-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 14px 32px;
    background: rgba(13, 13, 13, 0.7);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(254, 249, 195, 0.1);
}

.pr-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 28px;
}

.pr-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: -0.02em;
    line-height: 1;
}

.pr-stat-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
}

.pr-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ── Typing cursor for right panel ── */
.pr-typing-cursor {
    display: inline-block;
    width: 2px;
    height: 0.85em;
    background: var(--yellow);
    margin-left: 2px;
    animation: prBlink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes prBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ── Typing cursor for left panel ── */
.login-typing-cursor {
    display: inline-block;
    width: 2px;
    height: 0.85em;
    background: var(--ink);
    margin-left: 2px;
    animation: prBlink 1s step-end infinite;
    vertical-align: text-bottom;
    transition: opacity 0.3s;
}

/* ── Right panel image parallax ── */
.panel-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    filter: grayscale(30%) contrast(1.1);
    transform: scale(1.04);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Testimonial */
.panel-right-testimonial {
    margin-top: 24px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    position: relative;
}

.panel-right-testimonial::before {
    content: '\201C';
    position: absolute;
    top: -4px;
    left: 14px;
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    color: rgba(254, 249, 195, 0.2);
}

.panel-right-testimonial p {
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0 0 14px;
}

.panel-right-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-right-avatar {
    width: 28px;
    height: 28px;
    background: var(--yellow);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    flex-shrink: 0;
}

.panel-right-author strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.panel-right-author span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .panel-left { flex: 0 0 460px; padding: 40px 36px; }
}

@media (max-width: 960px) {
    body { overflow: auto; }

    .login-page {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .panel-left {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 3px solid var(--ink);
        padding: 40px 28px;
    }

    .login-dot-grid,
    .login-noise,
    .login-mesh,
    .login-corner,
    .login-ambient,
    .panel-left::after { display: none; }

    .panel-right {
        height: 360px;
        flex: none;
    }

    .panel-right-content { bottom: 32px; left: 28px; right: 28px; }
    .panel-right-testimonial { display: none; }
    .pr-stats-bar { display: none; }
    .join-fields-row { flex-direction: column; gap: 16px; }
}

@media (max-width: 520px) {
    .panel-left { padding: 32px 20px; }
    .panel-left-inner { max-width: 100%; }
    .heading-block h1 { font-size: 26px; }
    .panel-right { height: 280px; }
    .panel-right-content { bottom: 24px; left: 20px; right: 20px; }
    .panel-right-content h2 { font-size: 28px; }
}

/* ══════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════ */
.hidden { display: none !important; }
.animate-spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
#social-container { display: none !important; }
#btn-google       { display: none !important; }
