/* Add your custom styles for the auth page */
.auth-container {
    max-width: 350px;
    margin: 60px auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}
.auth-container h2 {
    margin-bottom: 1.5rem;
}
.auth-container input {
    width: 90%;
    padding: 0.7rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.auth-container button {
    width: 100%;
    padding: 0.7rem;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}
.auth-container button:hover {
    background: #444;
}
#auth-message {
    margin-top: 1rem;
    min-height: 1.2em;
}
