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

/* ===== CSS VARIABLES ===== */
:root{
    --font-sans: 'SF Pro Display', -apple-system, 'Helvetica Neue', 'Switzer', sans-serif;
    --font-serif: 'Newsreader', 'Lyon Text', 'Playfair Display', 'Instrument Serif', serif;
    --font-mono: 'Geist Mono', 'SF Mono', 'JetBrains Mono', monospace;
    --color-canvas: #FBFBFA;
    --color-surface: #FFFFFF;
    --color-border: #EAEAEA;
    --color-text: #2F3437;
    --color-text-secondary: #787774;
    --color-text-tertiary: #a8a8a4;
    --color-primary: #111111;
    --color-primary-hover: #333333;
    --radius: 8px;
    --radius-sm: 4px;
    --shadow-card: 0 0 0 rgba(0,0,0,0);
    --shadow-card-hover: 0 2px 8px rgba(0,0,0,0.04);
    --pastel-green-bg: #EDF3EC;
    --pastel-green-text: #346538;
    --pastel-red-bg: #FDEBEC;
    --pastel-red-text: #9F2F2D;
    --pastel-blue-bg: #E1F3FE;
    --pastel-blue-text: #1F6C9F;
    --pastel-yellow-bg: #FBF3DB;
    --pastel-yellow-text: #956400;
}

/* ===== BASE ===== */
html{
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body{
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-canvas);
    line-height: 1.6;
    min-height: 100vh;
}

/* ===== AMBIENT BACKGROUND ===== */
body::before{
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(237,243,236,0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(225,243,254,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: ambientDrift 25s ease-in-out infinite alternate;
}
@keyframes ambientDrift{
    0%{transform:translate(0,0)}
    100%{transform:translate(2%,1%)}
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3{
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-primary);
}
h1{ font-size: 2rem; margin-bottom: 0.25em; }
h2{ font-size: 1.4rem; margin-bottom: 0.5em; margin-top: 2rem; }
h3{ font-size: 1.1rem; }
p{ margin-bottom: 1em; color: var(--color-text-secondary); }

/* ===== LAYOUT & SIDEBAR ===== */
:root {
    --sidebar-width: 240px;
    --topbar-height: 56px;
    --transition-speed: 0.2s;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Sidebar styles */
.site-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--color-surface);
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: transform var(--transition-speed) ease;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: var(--topbar-height);
    padding: 0 1.5rem;
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.brand-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

/* Navigation Links */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color 0.15s, background 0.15s;
}

.sidebar-nav a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke-width: 2px;
}

.sidebar-nav a:hover {
    color: var(--color-text);
    background: var(--color-canvas);
}

.sidebar-nav a.nav-active {
    color: var(--color-primary);
    background: var(--color-canvas);
    font-weight: 500;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--color-surface);
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.user-badge {
    font-size: 0.7rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--pastel-blue-bg);
    color: var(--pastel-blue-text);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
}

.nav-logout {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.15s;
    font-weight: 500;
}

.nav-logout:hover {
    color: var(--color-text);
}

/* Topbar styles */
.site-topbar {
    position: sticky;
    top: 0;
    height: var(--topbar-height);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 99;
    margin-left: 0;
    transition: margin-left var(--transition-speed) ease;
}

#sidebar-toggle {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background 0.15s;
}

#sidebar-toggle:hover {
    background: var(--color-canvas);
}

#sidebar-toggle svg {
    width: 20px;
    height: 20px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Main Content Area */
.site-main {
    flex: 1;
    margin-left: 0;
    transition: margin-left var(--transition-speed) ease;
    padding: 2rem;
    width: auto;
}

/* Shell present (logged in): offset content for the fixed sidebar */
body.has-shell .site-topbar,
body.has-shell .site-main {
    margin-left: var(--sidebar-width);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Collapsed state (desktop) */
body.sidebar-collapsed .site-sidebar {
    transform: translateX(-100%);
}

body.sidebar-collapsed .site-topbar {
    margin-left: 0;
}

body.sidebar-collapsed .site-main {
    margin-left: 0;
}

/* Responsive design (mobile) */
@media (max-width: 768px) {
    .site-sidebar {
        transform: translateX(-100%);
    }
    
    body.has-shell .site-topbar {
        margin-left: 0;
    }
    
    body.has-shell .site-main {
        margin-left: 0;
    }

    .site-main {
        padding: 1.5rem 1rem;
    }
    
    body.sidebar-open .site-sidebar {
        transform: translateX(0);
    }
    
    /* Overlay background when sidebar is open on mobile */
    body.sidebar-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: 98;
        pointer-events: auto;
    }
}

/* ===== FLASH MESSAGES ===== */
.flash{
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid;
}
.flash-success{
    background: var(--pastel-green-bg);
    color: var(--pastel-green-text);
    border-color: rgba(52,101,56,0.12);
}
.flash-error{
    background: var(--pastel-red-bg);
    color: var(--pastel-red-text);
    border-color: rgba(159,47,45,0.12);
}

/* ===== CARDS / ARTICLE ===== */
article, .card{
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: box-shadow 0.2s ease;
}
article:hover, .card:hover{
    box-shadow: var(--shadow-card-hover);
}
article header{
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}
article h2{
    margin-top: 0;
    font-size: 2rem;
}

/* ===== GRID ===== */
.grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

/* ===== TABLES ===== */
table{
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin: 1.5rem 0;
}
thead{
    border-bottom: 1px solid var(--color-border);
}
th{
    text-align: left;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-secondary);
    padding: 0.75rem 0.75rem;
}
td{
    padding: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    vertical-align: middle;
}
tr:last-child td{ border-bottom: none; }
tr:hover td{ background: rgba(247,246,243,0.5); }

/* ===== FORMS ===== */
label{
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea{
    display: block;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.6rem 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.15s;
}
input:focus, select:focus, textarea:focus{
    border-color: var(--color-text-secondary);
}
textarea{ min-height: 80px; resize: vertical; }
input[type="checkbox"]{
    width: 16px; height: 16px;
    margin-right: 0.5rem;
    accent-color: var(--color-primary);
}

/* ===== BUTTONS ===== */
button, [role="button"], .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    background: var(--color-primary);
    color: #FFFFFF;
}
button:hover, [role="button"]:hover, .btn:hover{
    background: var(--color-primary-hover);
}
button:active, [role="button"]:active{
    transform: scale(0.98);
}
.secondary, button.secondary, [role="button"].secondary{
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}
.secondary:hover{
    background: var(--color-canvas);
    color: var(--color-text);
}
.outline{
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
.outline:hover{
    background: var(--color-canvas);
}

/* ===== STATUS BADGES ===== */
mark, .badge-active{
    font-size: 0.7rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--pastel-green-bg);
    color: var(--pastel-green-text);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-weight: 500;
}

/* ===== LINKS ===== */
a{
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: border-color 0.15s;
}
a:hover{
    border-bottom-color: var(--color-text);
}
nav a, .nav-links a, .nav-logout{
    border-bottom: none;
}
td a{
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid transparent;
}
td a:hover{
    color: var(--color-text);
    border-bottom-color: var(--color-text-secondary);
}

/* ===== HGROUP ===== */
hgroup{
    margin-bottom: 2rem;
}
hgroup p{
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

/* ===== SECTION ===== */
section{
    margin-top: 3rem;
}

/* ===== LOGIN OVERRIDE ===== */
article[style*="max-width:400px"]{
    margin-top: 6rem !important;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: none;
}

/* ===== INLINE DELETE FORMS ===== */
form[style*="display:inline"]{
    display: inline !important;
}
form[style*="display:inline"] button{
    background: none;
    border: none;
    color: var(--color-text-secondary);
    padding: 0;
    font-size: 0.8rem;
    border-bottom: 1px solid transparent;
}
form[style*="display:inline"] button:hover{
    color: var(--pastel-red-text);
    border-bottom-color: var(--pastel-red-text);
    background: none;
    transform: none;
}

/* ===== UTILITY ===== */
strong{ font-weight: 600; color: var(--color-text); }

/* ===== SCROLL REVEAL ===== */
.reveal{
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible{
    opacity: 1;
    transform: translateY(0);
}

/* ===== NOTIFICATION BADGE ===== */
.notif-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    background: var(--pastel-red-bg);
    color: var(--pastel-red-text);
    border-radius: 9999px;
    line-height: 1;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container{
    position: fixed;
    top: 72px;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
    max-width: 360px;
    width: 100%;
}
.toast{
    pointer-events: auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateX(20px);
    animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.toast.toast-out{
    animation: toastOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.toast-accent{
    width: 4px;
    min-height: 100%;
    border-radius: 2px;
    flex-shrink: 0;
    align-self: stretch;
}
.toast-accent--nilai{ background: var(--pastel-blue-text); }
.toast-accent--krs{ background: var(--pastel-green-text); }
.toast-accent--presensi{ background: var(--pastel-red-text); }
.toast-accent--broadcast{ background: var(--pastel-yellow-text); }
.toast-content{
    flex: 1;
    min-width: 0;
}
.toast-title{
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.15rem;
    line-height: 1.3;
}
.toast-body{
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}
.toast-close{
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-text-tertiary);
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    border-radius: var(--radius-sm);
    transition: color 0.15s, background 0.15s;
}
.toast-close:hover{
    color: var(--color-text);
    background: var(--color-canvas);
    transform: none;
}

@keyframes toastIn{
    0%{ opacity: 0; transform: translateX(20px); }
    100%{ opacity: 1; transform: translateX(0); }
}
@keyframes toastOut{
    0%{ opacity: 1; transform: translateX(0); }
    100%{ opacity: 0; transform: translateX(20px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px){
    .container{ padding: 2rem 1.25rem; }
    h1{ font-size: 1.6rem; }
    .grid{ grid-template-columns: 1fr; }
}

/* ===== NOTHING LANDING PAGE ===== */

:root {
    --text-display: #ffffff;
    --text-primary: #e5e5e5;
    --text-secondary: #999999;
    --text-disabled: #666666;
    --surface-dark: #000000;
    --border: #1a1a1a;
}

body.landing-page.nothing {
    background: var(--surface-dark);
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.nothing-hero {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    background: var(--surface-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 32px;
    overflow: hidden;
}

.nothing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.nothing-primary {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.nothing-headline {
    font-family: 'Doto', sans-serif;
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
    color: var(--text-display);
    margin: 0;
    letter-spacing: -0.02em;
}

.nothing-secondary-copy {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    max-width: 480px;
}

.nothing-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-display);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--text-secondary);
    padding: 12px 24px;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s ease-out, color 0.2s ease-out;
    align-self: flex-start;
}

.nothing-cta:hover {
    border-color: var(--text-display);
    color: var(--text-display);
}

.nothing-cta-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease-out;
}

.nothing-cta:hover .nothing-cta-arrow {
    opacity: 1;
    transform: translateX(0);
}

.nothing-tertiary {
    display: flex;
    gap: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--text-disabled);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nothing-tertiary--top {
    flex-direction: row;
    align-items: center;
}

.nothing-tertiary--bottom {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.nothing-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.nothing-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #4ade80;
}

.nothing-aside {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    justify-content: center;
}

.nothing-dot-matrix {
    display: grid;
    grid-template-rows: repeat(7, 1fr);
    gap: 8px;
}

.nothing-dot-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.nothing-pixel {
    width: 12px;
    height: 12px;
    background: var(--border);
    border-radius: 1px;
}

.nothing-pixel.on {
    background: var(--text-primary);
}

.nothing-counter {
    text-align: center;
}

.nothing-counter-value {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 48px;
    font-weight: 400;
    color: var(--text-display);
    line-height: 1;
    margin-bottom: 8px;
}

.nothing-counter-label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--text-disabled);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

[data-anim="reveal"] {
    opacity: 0;
    transform: translateY(12px);
}

[data-anim="fade"] {
    opacity: 0;
}

[data-anim="count"] {
    opacity: 0;
}

@media (max-width: 768px) {
    .nothing-hero {
        padding: 32px 16px;
    }

    .nothing-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nothing-headline {
        font-size: 56px;
    }

    .nothing-secondary-copy {
        font-size: 16px;
    }

    .nothing-tertiary--bottom {
        flex-direction: column;
        gap: 8px;
        padding-top: 24px;
    }
}

/* ===== NOTHING DESIGN LOGIN ===== */

.nothing-login {
    background: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 32px;
}

.nothing-login-primary {
    text-align: center;
    margin-bottom: 48px;
}

.nothing-login-primary .nothing-headline {
    font-family: 'Doto', 'Space Grotesk', system-ui, sans-serif;
    font-weight: 900;
    font-size: 56px;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.nothing-login-primary .nothing-subheading {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

.nothing-login-form {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 32px;
    max-width: 400px;
    width: 100%;
}

.nothing-form-group {
    margin-bottom: 24px;
}

.nothing-form-group:last-of-type {
    margin-bottom: 32px;
}

.nothing-label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 8px;
    letter-spacing: 0.08em;
}

.nothing-input {
    width: 100%;
    padding: 12px 16px;
    background: #0f0f0f;
    border: 1px solid #262626;
    border-radius: 0;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 14px;
    color: #ffffff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.nothing-input:focus {
    outline: none;
    border-color: #333333;
    background: #121212;
}

.nothing-button {
    width: 100%;
    padding: 12px 24px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 0;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nothing-button:hover {
    background: #f0f0f0;
}

.nothing-button:active {
    background: #e0e0e0;
}

.nothing-login-tertiary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    gap: 24px;
    padding: 24px 32px;
    background: #000000;
    border-top: 1px solid #1a1a1a;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 768px) {
    .nothing-login {
        padding: 32px 16px 120px;
    }

    .nothing-login-primary .nothing-headline {
        font-size: 42px;
    }

    .nothing-login-primary .nothing-subheading {
        font-size: 14px;
    }

    .nothing-login-form {
        max-width: 100%;
    }

    .nothing-login-tertiary {
        flex-direction: column;
        gap: 8px;
    }
}
