/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Full-Page Background */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #000; /* Black background */
}

/* Glassmorphism Container */
.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 350px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Heading */
h2 {
    color: white;
    margin-bottom: 20px;
}

/* Form Input Styling */
input {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    outline: none;
}

/* Placeholder Styling */
input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Login Button */
button {
    width: 100%;
    background: #28a745;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

button:hover {
    background: #218838;
}

/* Error Message */
#message {
    color: #ff4d4d;
    margin-top: 10px;
}

/* Forgot Password & Register Links */
a {
    color: #0d6efd;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-top: 10px;
}

a:hover {
    text-decoration: underline;
}
