/* General Dark Mode Styling for Login Page */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #0d1117;
    color: #c9d1d9;
}

/* Login Container */
.login-container {
    width: 100%;
    max-width: 360px;
    padding: 40px;
    background-color: #161b22;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Logo */
.logo {
    width: 60px;
    margin-bottom: 20px;
}

/* Header */
h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #c9d1d9;
}

/* Form Elements */
label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    color: #c9d1d9;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #0d1117;
    border: 1px solid #30363d;
    border-radius: 5px;
    color: #c9d1d9;
    font-size: 14px;
}

/* Sign In Button */
button {
    width: 100%;
    padding: 10px;
    background-color: #0366d6; /* Dark blue button */
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

button:hover {
    background-color: #0356b6;
}

/* Forgot Password Link */
.forgot-password {
    display: block;
    margin-top: 10px;
    color: #58a6ff;
    font-size: 12px;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Message Styling */
#message {
    margin-top: 15px;
    color: #ff7b72;
}
