body {
    font-family: Arial, sans-serif;
    background-color: #ececec;
    color: #333;
    margin: 0;
    padding: 2rem;
}

h1 {
    text-align: center;
    color: white;
    background-color: #f51773;
    margin-left: 500px;
    margin-right: 500px;
    padding: 20px;
    margin-bottom: 0px;
    border-radius: 12px;
}

form {
    max-width: 600px;
    margin: auto;
    background-color: #ffffff;
    padding: 10pt;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

fieldset {
    border: 2px solid #f51773;
    margin-bottom: 10pt;
    border-radius: 12px;
}

legend {
    font-weight: bold;
    margin-bottom: 10pt;
    font-size: 20pt;
    color: #f51773;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 30pt;
}

label {
    display: block;
    margin-bottom: 0pt;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="date"],
select {
    width: 100%;
    padding: 10pt;
    border: 1px solid #f51773;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
}

input[type="radio"] {
    margin-right: 10pt;
}

.radiolabel {
    margin-right: 10pt;
}

input[type="submit"] {
    background-color: #f51773;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 15pt;
    border-radius: 8px;
}

input[type="submit"]:hover {
    background-color: #f51773;
}

footer {
    text-align: center;
    margin-top: 10pt;
    font-size: 10pt;
    color: #777;
}
.radio-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 5pt;
}

.radio-group input[type="radio"] {
    margin: 0;
}

.radio-group label {
    margin: 0;
}