body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
}
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
h2 {
    text-align: center;
    color: #003366;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ced4da;
    border-radius: 4px;
}
.form-group input[type="radio"] {
    width: auto;
    margin-right: 10px;
}
.form-group input:focus {
    outline: none;
    border-color: #66afe9;
}
.submit-btn {
    background-color: #17a2b8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}
.submit-btn:hover {
    background-color: #138496;
}




body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.content {
    flex: 1; /* This allows the content area to grow and pushes the footer down */
}
.footer {
    background-color: #f0f0f0;
    text-align: center;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #ddd;
}
.footer p {
    margin: 0;
    font-size: 14px;
    color: #333;
}