body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.banner-container {
    margin-bottom: 20px;
}

.banner-image {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.login-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

h2 {
    text-align: center;
    color: #333;
}

.error-message {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* General input styles */
input[type="email"],
input[type="password"] {
    width: 100%; /* Takes full width of the parent container */
    max-width: 400px; /* Optional: Set a max width for better design */
    padding: 10px; /* Add padding for better appearance */
    font-size: 16px; /* Adjust font size */
    border: 1px solid #ccc; /* Light border */
    border-radius: 0px; /* Slightly rounded corners */
    box-sizing: border-box; /* Include padding and border in width calculation */
    margin-bottom: 15px; /* Space between fields */
    outline: none; /* Remove blue border on focus */
}

/* Style on focus */
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #04527b; /* Highlight border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add a slight glow */
}

/* Responsive container for inputs */
form {
    max-width: 100%;
    width: 100%;
    margin: auto; /* Center the form */
}


.login-button {
    background: #0099CC;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 0px;
    cursor: pointer;
}

.login-button:hover {
    background: #0080AB;
}

/* Create Account Button Styles */
.create-account-container {
    text-align: center; /* Center the content */
    margin-top: 15px; /* Add some space above the container */
}

.create-account-container p {
    margin-bottom: 5px; /* Space between the text and button */
    font-size: 14px; /* Optional: Adjust font size */
}

.create-account-button {
    display: inline-block; /* Makes the button behave like a block for padding */
    padding: 10px 20px; /* Add padding for better appearance */
    font-size: 16px; /* Font size for readability */
    color: #fff; /* Text color */
    background-color: #0099CC; /* Button background color */
    text-decoration: none; /* Remove underline from link */
    border-radius: 0px; /* Rounded corners */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor for clickable effect */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

/* Hover effect for Create Account Button */
.create-account-button:hover {
    background-color: #0080AB; /* Darker shade for hover */
}


.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-password-link {
    color: #007bff;
    text-decoration: none;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}
