header {
    display: flex;
    /*align-items: center;*/
    padding: 10px 0;
    background-color: #f8f9fa;
    position: sticky;
    top: 0;
    z-index: 1000;
    color: #004580 !important;

}

header .left-section {
    display: flex;
    align-items: center; /* Align them to the left */
    gap: 5px; /* Optional: Add spacing between the elements */
}

.head-btn{
    margin-right: 50px;
}

header .right-section {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Aligns the content to the right */
    margin-left: auto;
}

header img {
    margin-right: 10px;
}

header h1 {
    margin: 0;
    margin-right: 10px;
}
header h5 {
    margin-top: 22px;
}

#logo {
    width: 80px;
    height: 50px;
    margin-right: 20px;
}

/* Center the form within the container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Ensure the container takes up the full height of the viewport */
}

form {
    width: 100%;
    max-width: 400px; /* Set a maximum width for the form */
    margin-left: 20px;
}