body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f0f0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.banner {
    background-color: #ff5733;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

header {
    color: white;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px; /* Adjust height as needed */
    background-image: url('A_beautiful_snowy_background_with_soft,_falling_sn.png'); /* Add your background image */
    background-size: cover;
    background-position: center;
    margin-top: 3rem; /* Adjust to account for the banner */
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    position: absolute;
    top: 30px;
    left: 30px;
    transition: transform 0.3s ease; /* Added transform transition */
}

.logo img {
    height: 200px;
    width: 200px;
}

.logo:hover {
    transform: scale(1.1); /* Scale up slightly on hover */
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #3b4a59; /* Use the provided dark blue color */
}

.header-content h1 {
    font-size: 3rem;
    margin: 0;
}

.header-content p {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.navbar {
    position: absolute;
    top: 5rem;
    right: 1rem; /* Adjust the position to create space between the header and the button */
}

.navbar .button {
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    padding: 1rem 2rem; /* Increased padding for larger button */
    font-size: 1.5rem; /* Increased font size */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Added transform transition */
}

.navbar .button:hover {
    background-color: #0056b3;
    transform: scale(1.1); /* Scale up slightly on hover */
}

.navbar .button:link, .navbar .button:visited {
    text-decoration: none;
}

.main-content {
    text-align: center;
    padding: 2rem 1rem;
    flex: 1;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.button-container .button {
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease; /* Added transform transition */
}

.button-container .button:hover {
    background-color: #0056b3;
    transform: scale(1.1); /* Scale up slightly on hover */
}

.form-container {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px; /* Adjust width as needed */
}

.form-container h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.form-container label {
    display: none; /* Hide label */
    margin: 0.5rem 0;
    color: #333;
}

.form-container input[type="text"],
.form-container input[type="password"],
.form-container input[type="email"] {
    width: calc(100% - 20px);
    padding: 0.75rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    color: #999; /* Light gray color for placeholder text */
}

.form-container input[type="text"]:focus,
.form-container input[type="password"]:focus,
.form-container input[type="email"]:focus {
    color: #000; /* Black color when typing */
}

.form-container input[type="submit"],
.form-container .form-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.form-container input[type="submit"]:hover,
.form-container .form-button:hover {
    background-color: #0056b3;
}

.form-container .form-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.form-container a.form-button {
    text-decoration: none;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.hidden {
    display: none;
}
