body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #151515;
}

.login-box {
    background: #282726;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #bf9b30;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 300px;
}

input {
    width: 100%;
    background-color: #151515;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #bf9b30;
    border-radius: 4px;
    box-sizing: border-box;
}

input, select, textarea{
    color: white;
}

textarea:focus, input:focus {
    color: white;
}

button {
    width: 100%;
    padding: 10px;
    background: #bf9b30;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #ffbf00;
}

.error {
    color: red;
    font-size: 0.9em;
    margin-bottom: 10px;
}

label, h2 {
    color: white;
}