body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.header {
    text-align: center;
    padding: 20px;
    background-color:#F8AB23;
    color: #fff;
}
.header img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.container {
    max-width: 800px;
            margin: 50px auto ;	
            padding: 25px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
}
h2 {
    text-align: center;
    margin-top: 10;
}
form {
   max-width: 800px;
    width: 480px;
    margin: 0 auto;
    margin-top: 20px;
    height: 260px; /* Increased height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
        text-align: center;
}
label {
    display: block;
    margin-top: 60px;
    margin-bottom: 5px;
}
input[type="text"],
input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
input[type="submit"] {
    background-color: #2993e9;
    color: #fff;
    border: none;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #12627f;
}
.footer {
    text-align: center;
    padding: 20px;
    background-color: #00152E;
    color: #fff;
    margin-top: auto; /* Push the footer to the bottom */
}
.container img {
    max-width: 250px; /* Adjust the max-width as needed */
    height: auto;
}

/* Style for the floating home button */
.home-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000; /* Ensure it's above other elements */
}
