/* General Body Styles for Login Page */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f9fc; /* Light background for login */
    margin: 0;
    padding: 0;
    display: flex; /* Flexbox layout for centering */
    justify-content: center; /* Horizontal alignment */
    align-items: center; /* Vertical alignment */
    height: 100vh; /* Full viewport height */
}
/* Login Page Styles */
.login-container {
    max-width: 400px;
    width: 100%;
    margin: 50px auto; /* Center the container vertically */
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Soft shadow */
    text-align: center;
}

h2 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9f9f9;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #007BFF; /* Highlight input on focus */
    outline: none;
}

button {
    width: 100%;
    padding: 14px;
    background-color: #007BFF;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

a {
    text-decoration: none;
    color: #007BFF;
    font-size: 14px;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}
