/* Reset some default styles to ensure consistency */
body, h1, form {
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', serif;
}

/* Center the login form */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('images/loginbackground.png'); /* Replace with your image path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 110%; /* Increased container width to 1280px */
    padding: 120px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    background-color: rgba(255, 255, 255, 0); /* 100% transparent background */
    margin-left: auto; /* Center container horizontally */
    margin-right: auto;
}

h1 {
    color: #c9c2c2;
    font-size: 25px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

form {
    text-align: left;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* 80% transparent white background */
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    width: 100%; /* Increased width to 80% */
    margin-left: auto; /* Center form horizontally */
    margin-right: auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="password"],
input[type="tel"] {
    width: 80%; /* Reduced input width to 80% */
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0); /* 80% transparent white background */
}

button[type="submit"] {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

#error-message {
    color: red;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}
