form {
    width: 100%;
    align-content: center;
    gap: 0.35rem;
}
form .row {
    display:flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
}
input {
    min-height: calc(1.5em + (.5rem + 2px));
    max-height: calc(2em + (.5rem + 2px));
	padding: .25rem .5rem;
	font-size: .875rem;
	border-radius: .2rem;
}

select {
	padding-top: .25rem;
	padding-bottom: .25rem;
	padding-left: .5rem;
	font-size: .875rem;
}

input[type="number"] {
    padding-right: 0;
    max-width: 30%;
    min-width: 45px;
    padding-left:0.25rem;
}

input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

form ul {
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

form ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

fieldset {
  width: 100%;
  box-sizing: border-box;
}

fieldset legend {
    padding: 0 0.25rem;
}

.redondo {
    display: inline-block;
    width:20px;
    height: 20px;
    text-align: center;
    border-radius: 50%;
    background-color:#9D8384;
    color:#FFCC66;
}

form ul li label {
    margin-right: 0.25rem;
}

.sublabel {
    font-size: 0.8rem;
    color: #666;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#enviar {
    justify-content: flex-end;
}

.separados {
    justify-content: space-between;
}



