body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f9f9f9;
    color: #333;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
}

fieldset {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
}

legend {
    font-weight: bold;
}

label {
    display: inline-flex; /* Use inline-flex to keep the label and radio button inline */
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
    gap: 1px; /* Minimize the gap between the text and the radio button */
}

label input[type="radio"] {
    margin-left: 0; /* Ensure no extra margin between the radio button and the text */
    margin-right: 3px; /* Add a slight margin to the right of the radio button for spacing */
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: not-allowed;
    font-size: 16px;
}

p {
    text-align: center;
    font-size: 14px;
}

p a {
    color: #007BFF;
    text-decoration: underline;
}

p a:hover {
    color: #0056b3;
}
