/* Reset margin and padding for body and html */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Flexbox layout for the body */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;  /* Ensures body height is at least 100% of the viewport */
}

/* Ensure the main container takes the available space */
.container {
    flex: 1;
    padding: 20px;
}

/* Styling for the form-container */
.form-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Footer styles */
footer {
    background-color: #0F4CCB; /* Brand color */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: auto;  /* Ensures footer stays at the bottom without overlapping content */
}

/* Link styles */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

ul li a {
    text-decoration: none;
    color: #0F4CCB;
    font-weight: bold;
    padding: 8px;
    display: inline-block;
}

ul li a:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}