/* Body & container */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #1c1c1c;
    padding: 40px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    text-align: center;
}

/* Headings */
h1 {
    margin-bottom: 25px;
}

/* Form inputs & buttons */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form > * {
    margin-bottom: 12px;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 16px;
}

input:focus {
    outline: 2px solid #007BFF;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #007BFF;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

/* Message */
.message {
    margin-bottom: 15px;
    padding: 10px;
    background: #330000;
    color: #ff6666;
    border-radius: 6px;
}

/* Links */
a {
    color: #00bfff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hidden forms (if needed later) */
.hidden {
    display: none;
}
