@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

body {
    margin: 0;
    height: 100vh;
    background:
        radial-gradient(circle at top, #3f2b18, #1a120b 60%, #0c0906);
    color: #f0d8a8;
    font-family: 'Cinzel', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.mist {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.05), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,.04), transparent 40%);
}

.container {
    text-align: center;
    max-width: 420px;
    padding: 2rem;
    z-index: 2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 6px;
    color: #f7e6b2;
    text-shadow: 0 0 20px rgba(255, 220, 120, .4);
}

.status {
    color: #d6a95f;
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input {
    background: rgba(20, 15, 10, .8);
    border: 2px solid #8f6a3f;
    color: #f0d8a8;
    padding: 14px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

input:focus {
    border-color: #d8b16c;
    box-shadow: 0 0 15px rgba(216, 177, 108, .5);
}

button {
    background: #8f6a3f;
    color: white;
    border: none;
    padding: 14px;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: .2s;
}

button:hover {
    background: #b88a53;
}

button:disabled {
    opacity: .6;
}

.error {
    color: #ff8c6a;
    min-height: 1.5em;
    margin-top: 1rem;
}

.footer {
    margin-top: 3rem;
    opacity: .8;
    font-size: .85rem;
}