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

body {
    background: #F4F1EC;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.landing {
    text-align: center;
    padding: 2rem;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.wordmark {
    font-size: 2.8rem;
    font-weight: 300;
    color: #333;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.gate-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: 260px;
    margin: 0 auto;
}

.gate-form input {
    background: #FFFFFF;
    border: 1px solid #D4C9B8;
    border-radius: 6px;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    color: #333;
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
}

.gate-form input::placeholder {
    color: #BBB;
}

.gate-form input:focus {
    border-color: #D4922A;
}

.gate-form button {
    background: #D4922A;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
    color: #FFF;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    margin-top: 0.3rem;
}

.gate-form button:hover {
    background: #C0831F;
}

.error {
    color: #C0392B;
    font-size: 0.85rem;
    margin-top: 1rem;
    height: 1.2rem;
}
