body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    color: #333;
    background-color: #F26000;
}
.header, .footer {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header h1 {
    color: #f26000;
    margin-bottom: 5px;
}
.bmg-logo {
    font-weight: bold;
    font-size: 1.5em;
    color: #f26000;
    text-transform: uppercase;
}
form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 20px auto;
}
section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
section:last-of-type {
    border-bottom: none;
}
h2 {
    color: #f26000;
    border-bottom: 2px solid #f26000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type="radio"] {
    margin-right: 5px;
}
input[type="radio"] + label {
    display: inline-block;
    font-weight: normal;
    margin-right: 15px;
}
button[type="submit"],
button[type="button"] {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}
button[type="submit"]:hover,
button[type="button"]:hover {
    background-color: #1f32c5;
}
#clearSignature {
    background-color: #f78700;
    margin-left: 15px;
}
#clearSignature:hover {
    background-color: #f36000;
}
.signature-pad {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 10px;
    background-color: #f9f9f9;
}
.signature-pad canvas {
    display: block; /* Remove extra space below canvas */
    width: 100%;
    height: 200px; /* Adjust height as needed */
    border: 1px dashed #ccc;
    border-radius: 4px;
}
.footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #666;
}