body {
    background: #111;
    font-family: 'Segoe UI', sans-serif;
    color: #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

form {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #d4af37;
    box-shadow: 5px 5px 15px #000;
    width: 300px;
}

input, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    background: #333;
    color: #d4af37;
    font-size: 16px;
}

button {
    background: #d4af37;
    color: #111;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #bfa339;
}

a {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    display: block;
    text-align: center;
    margin-top: 10px;
}

h2, h1 {
    text-align: center;
}
