/* Center full form area */
main {
    width: 800px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
}

/* Page Header */
h1 {
    text-align: center;
}

h2 {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Fieldset styling to match screenshot */
fieldset {
    background-color: #eeeeee;
    border: 2px solid #999;
    padding: 15px;
    margin-bottom: 25px;
}

/* Legend styling (orange with red border) */
legend {
    background-color: #ff9933;
    border: 2px solid #cc3300;
    padding: 5px 10px;
    font-weight: bold;
}

/* Text inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    padding: 5px;
    width: 250px;
    border: 1px solid #ccc;
}

/* Radio + checkbox spacing */
label {
    margin-right: 10px;
}

/* Textarea formatting */
.textinput {
    width: 98%;
    height: 120px;
    border: 1px solid #ccc;
    padding: 8px;
}

/* Footer centered */
footer {
    text-align: center;
    margin-top: 30px;
}
