/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container, .login-container, .registration-container {
    background-color: #1f1f1f; /* Slightly lighter dark background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: center;
}

h2 {
    color: #ffffff; /* White for headers */
    margin-bottom: 20px;
}

a {
    color: #4caf50; /* Green links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

form div {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #e0e0e0;
}

input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #333;
    color: #e0e0e0;
}

input:focus {
    outline: none;
    border: 2px solid #4caf50;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4caf50; /* Green buttons */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

#message {
    margin-top: 15px;
    color: #ff0000; /* Red for error messages */
}

p {
    margin-top: 20px;
    color: #e0e0e0;
}
