/* CSS Document */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #f0f0f0;
}

.banner {
    background-color: #000; /* Set the background color to black */
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    flex-shrink: 0; /* Prevents the banner from being compressed */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner img {
    max-height: 100px; /* Adjust this value as needed */
    width: auto;
    height: auto;
}

.login-form {
    display: flex;
    align-items: center;
}

.login-form input {
    margin: 0 5px;
    padding: 5px;
    border: none;
    border-radius: 3px;
    background-color: #ccc; /* Set background color to grey */
    width: 80%; /* Reduce width to 80% of original size */
}

.login-form button {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    background-color: #fff;
    color: #000;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #ddd;
}

img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    flex-shrink: 1; /* Allows the image to resize as necessary */
}
