:root {
    --primary-color: #4CAF50;
    --hover-color: #45a049;
    --font-family: Arial, sans-serif;
    --background-overlay: rgba(0, 0, 0, 0.5);
    --form-background: rgba(255, 255, 255, 0.9);
    --input-border: #ccc;
    --text-color: #333;
    --button-text-color: white;
    --border-radius: 10px;
    --box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background: url('../images/logon.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--background-overlay);
}

form {
    background: var(--form-background);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    width: 300px; /* Adjust the width as needed */
    margin: 0 auto; /* Center horizontally */
}

h2 {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 24px; /* Increased font size */
}

label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: bold; /* Make labels bold */
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--input-border);
    border-radius: 5px;
    font-size: 16px; /* Increased font size for inputs */
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: var(--button-text-color);
    font-size: 18px; /* Increased font size for button */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition */
}

input[type="submit"]:hover {
    background-color: var(--hover-color);
}
