/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background and layout styles */
body {
    background-color: #000; /* Dark background to match home page */
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* Card styling for the login form */
.login-card {
    background-color: #111;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.3);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

/* Header styling with neon effect */
.login-card h2 {
    font-size: 2em;
    color: #f0f;
    text-shadow: 0 0 10px #f0f, 0 0 20px #f0f, 0 0 30px #f0f;
    margin-bottom: 1rem;
}

/* Input field styling */
.form-control {
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 10px;
    font-size: 1em;
    margin-bottom: 1rem;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 10px #0ff;
    border-color: #0ff;
}

/* Button styling with neon effect */
.login-button {
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    font-weight: bold;
    color: #000;
    background-color: #ff0;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.login-button:hover {
    background-color: #0ff;
    color: #000;
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

/* Footer text styling */
.footer-text {
    margin-top: 1.5rem;
    font-size: 0.9em;
    color: #666;
}

.footer-text a {
    color: #0ff;
    text-decoration: none;
}

.footer-text a:hover {
    color: #ff0;
}