/******************************************************/
.registrationForm {
    display: flex;
    flex-direction: column;
    border: 2px solid black;
    border-radius: 5px;
    padding: 10px;
    background-color: #eeeeee;
}

.formHeader {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    color: #f2ac00;
    font-size: 1.5em;
    font-weight: bold;
}

.section {
    display: flex;
    flex-direction: column;
    border-top: 2px solid black;
    padding: .5em 1em;
}

.section h3 {
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.section-row {
    display: flex;
}

.section-row label {
    font-weight: bold;
    width: 25%;
}

.section-row input {
    flex-grow: 1;
    padding-left: .5em;
}

.section-row input[type='checkbox'],
.section-row input[type='radio'] {
    width: 1em;
    margin-right: 1em;
    flex-grow: 0;
}

.fullLabel {
    flex-grow: 1;
}

.hidden {
    display: none;
}