form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea,
select {
    padding: 0.5em;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

button {
    padding: 0.75em;
    font-size: 1em;
    background: #222;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #444;
}