body {
    background-color: #181C14;
    color: #ECDFCC;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #181C14;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

label {
    margin-bottom: 8px;
    font-size: 0.9em;
}

input {
    padding: 10px;
    margin-bottom: 16px;
    border: 2px solid #ECDFCC;
    border-radius: 8px;
    background-color: #181C14;
    color: #ECDFCC;
    font-family: inherit;
    font-size: 1em;
}

input:focus {
    outline: none;
    border-color: #777;
    box-shadow: 0 0 5px rgba(120, 120, 120, 0.5);
}

button {
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid #ECDFCC;
    background-color: #ECDFCC;
    color: #181C14;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 10px;
    width: 100%;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}

button:hover {
    background-color: transparent;
    color: #ECDFCC;
    border-color: #ECDFCC;
}

h2 {
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 1.8em;
}

a {
    width: 100%;
    margin-top: 10px;
    color: #aaa;
    text-decoration: none;
    text-align: center;
    display: block;
}

a:hover {
    color: #ECDFCC;
    text-decoration: underline;
}
