/* Reset some default styles for body and HTML elements */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Audiowide", Arial, sans-serif;
    /* Set the font family to "Audiowide" and fallback to Arial and sans-serif */
}

/* Apply a background color to the body */
body {
    background-color: #f0f0f0;
    /* Set your desired background color */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
}
img {
    max-width: 100%;
    height: auto;
}
/* Style the logo image */
.logo-image {
    max-width: 200px;
    /* Set the maximum width for the logo */
    margin-bottom: 20px;
    /* Add spacing between the logo and the heading */
}

/* Center-align the heading */
h1 {
    text-align: center;
    font-family: "Audiowide", Arial, sans-serif;
    /* Set the font family for the heading */
}

/* Center-align the form and its elements */
#loginForm {
    background-color: #fff;
    /* Set a background color for the form */
    padding: 20px;
    border-radius: 8px;
    /* Add rounded corners to the form */
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* Add a subtle shadow to the form */
    width: 80%;
    /* Set the width of the form to 80% of the viewport */
    max-width: 400px;
    /* Limit the maximum width of the form */
}

/* Style the form labels */
label {
    display: block;
    margin-top: 10px;
    /* Add spacing between labels and input fields */
    font-family: "Audiowide", Arial, sans-serif;
    /* Set the font family for labels */
}

/* Style the input fields */
input[type="text"],
input[type="password"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

/* Style the login button */
button {
    background-color: #007BFF;
    /* Set the button's background color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Audiowide", Arial, sans-serif;
    /* Set the font family for the button */
}

button:hover {
    background-color: #0056b3;
    /* Change button background color on hover */
}

/* Style the "Forgot Password" link */
.cool-button {
    text-decoration: none;
    display: inline-block;
    background-color: #007BFF;
    /* Set the link's background color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 10px;
    /* Add spacing above the link */
    font-family: "Audiowide", Arial, sans-serif;
    /* Set the font family for the link */
}

.cool-button:hover {
    background-color: #0056b3;
    /* Change link background color on hover */
}

/* Mobile responsiveness */
@media (max-width: 768px) {

    /* Adjust styles for smaller screens, e.g., smartphones */
    #loginForm {
        width: 90%;
        /* Make the form width 90% of the viewport */
    }
}