/* Basic Reset and Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9; /* Light background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container for the Login Form */
.login-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px; /* Standard login form width */
}

/* Header Styling */
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

/* Input Group for Spacing */
.input-group {
    margin-bottom: 20px;
}

/* Label Styling */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

/* Input Field Styling */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Important: makes padding not increase total width */
    font-size: 16px;
}

/* Button Styling */
button {
    width: 100%;
    padding: 12px;
    background-color: #007bff; /* Primary color */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}