body {
    margin: 0;
    font-family: Arial, sans-serif; /* Adjust as needed */
    background-color: #f4f4f4; /* Light background color */
}

.login-header {
    text-align: center;
    padding: 20px 0;
    background-color: #007BFF; /* Header background color */
    color: white; /* Header text color */
}

.login-frame {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
    align-items: center; /* Center all items in the frame */
    height: 100vh; /* Full height of the viewport */
}

.login-container {
    background-color: white; /* Background for the login form */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for the container */
    border-radius: 8px; /* Rounded corners */
    padding: 30px; /* Padding inside the frame */
    width: 400px; /* Set a fixed width for the login container */
    text-align: left; /* Align text to the left */
    margin-bottom: 20px; /* Space below the form */
}

.form-title {
    margin-bottom: 20px; /* Space between title and form */
    font-size: 24px; /* Adjust title size as needed */
    color: #333; /* Title text color */
}

.form-group {
    margin-bottom: 15px; /* Space between form fields */
}

label {
    display: block; /* Block display for labels */
    margin-bottom: 5px; /* Space below labels */
    color: #555; /* Label color */
}

input[type="text"],
input[type="password"] {
    width: 100%; /* Full width */
    padding: 10px;
    border: 1px solid #ccc; /* Border color */
    border-radius: 4px; /* Rounded input corners */
    box-sizing: border-box; /* Ensure padding doesn't affect total width */
}

input[type="text"] {
    background-color: #e7f0ff; /* Light blue background for username */
    color: #333; /* Text color */
}

input[type="password"] {
    background-color: #e7f0ff; /* Same light blue background for password */
    color: #333; /* Text color */
}

.login-button {
    padding: 10px;
    background-color: #007BFF; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Full width for button */
}

.error-message {
    color: red; /* Error message color */
    margin-top: 10px; /* Space above error messages */
}

.logo-container {
    margin-top: 20px; /* Space above logo */
    text-align: center; /* Center the logo */
}

.ministry-logo {
    width: 250px; /* Increased logo size */
    height: auto; /* Maintain aspect ratio */
}

