/*
 * Minimalist login page.
 * Pure black-and-white palette, Nexa typeface throughout, no decorative chrome.
 * The shape is one card, three inputs, one button — nothing else.
 */

html, body {
    height: 100%;
}

.login-body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f2;
    color: #111;
    font-family: nexa, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

.login-card {
    width: 100%;
    max-width: 360px;
    padding: 56px 40px;
    background: #ffffff;
    border: 1px solid #111;
    box-sizing: border-box;
}

.login-title {
    font-family: nexa-black, sans-serif;
    font-size: 22px;
    letter-spacing: 0.32em;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    text-align: center;
}

.login-sub {
    font-family: nexa-light, sans-serif;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-align: center;
    color: #6b6b6b;
    margin: 0 0 40px 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-label {
    font-family: nexa-bold, sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: -10px;
}

.login-input {
    font-family: nexa, sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: #111;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #111;
    background: transparent;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
}

.login-input:focus {
    border-bottom-color: #000;
}

.login-button {
    font-family: nexa-bold, sans-serif;
    font-size: 12px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: #fff;
    background: #111;
    border: 1px solid #111;
    padding: 14px 0;
    margin-top: 24px;
    cursor: pointer;
    transition: background-color 120ms ease, color 120ms ease;
}

.login-button:hover {
    background: #fff;
    color: #111;
}

.login-button:active {
    transform: translateY(1px);
}

.login-hint {
    font-family: nexa-light, sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9a9a9a;
    text-align: center;
    margin: 18px 0 0 0;
}
