/* login.css */
body {
    font-family: 'Orbitron', sans-serif;
    background-color: #121212;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.login-container h1 {
    margin-bottom: 0.5rem;
    color: #00ff99;
}

.login-container h2 {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input[type="text"], input[type="password"] {
    padding: 0.7rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    padding: 0.7rem;
    background-color: #00ff99;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    color: #121212;
    font-weight: bold;
}

button:hover {
    background-color: #00e68a;
}

.error-message {
    color: #ff4d4d;
    font-size: 0.9rem;
}

.register-link a {
    color: #00ff99;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}
