body {
    width: 800px;
}
h1 {
    display: flex;
    justify-content: space-between;
}
section {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
input {
    margin: 10px;
    width: 90%;
}
label {
    display: flex;
    flex-direction: column;
    min-width: 100px;
    align-items: flex-start;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-top: 1rem;

}
button {
    width: 800px;
    height: 40px;
    color: black;
    background-color: white;
}
section.special {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
section.special  label {
    width: auto ;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-top: 15px;
}
section.special input {
    width: 45%;
    margin: 10px;
}
legend{
    width: 100%;
}
fieldset.dots{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    border: none;
    margin-top: 1rem;
}
fieldset.dots  label{
    width: auto ;
    margin: 0;
}
fieldset.dots input{
    width: auto;
    margin: 0;
}
fieldset.dots legend{
    font-weight: bold;
    margin-right: 0.5rem;
    width: auto;
}