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

body {
    margin: 0;
    height: 100vh;
    background:
        radial-gradient(circle at center, #0d1b38 0%, #060814 50%, #010205 100%);
    color: #c8f6ff;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 1px, transparent 1px);
    background-size: 60px 60px, 120px 120px;
    background-position: 0 0, 30px 30px;
    opacity: .3;
}

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

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 8px;
    color: #7ce8ff;
    text-shadow:
        0 0 10px #36dfff,
        0 0 25px #36dfff;
}

.status {
    color: #7faeff;
    margin-bottom: 2rem;
    font-size: .95rem;
}

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

input {
    background: rgba(8, 15, 35, .8);
    border: 2px solid #36dfff;
    color: #c8f6ff;
    padding: 14px;
    font-family: inherit;
    outline: none;
}

input:focus {
    box-shadow: 0 0 15px #36dfff;
}

button {
    background: #36dfff;
    color: #04111a;
    border: none;
    padding: 14px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

button:hover {
    background: #6be8ff;
}

button:disabled {
    opacity: .6;
}

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

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