#form-body {
display: flex;
justify-content: center;
}
form {
width: 100%;
}
.form-element {
display: flex;
flex-direction: column;
margin-bottom: 5px;
}
label {
font-family: Roboto;
font-size: 15px;
padding-left: 10px;
padding-bottom: 5px;
}
.input-field {
border: solid 1px;
border-color: #42698A;
border-radius: 10px;
height: 40px;
width: 100%;
background-color: white; 
padding-left: 10px;
}
.invalid{
border: 1px solid red !important;
}
input[type="checkbox"]{
border: 1px solid black !important;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none; 
width: 14px;
height: 14px;
position: relative;
cursor: pointer;
}
input[type="checkbox"].invalid{
border: 1px solid red !important;
}
input[type="checkbox"]:checked::after {
content: "✓";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 12px;
line-height: 1;
}
.input-field-note {
border: solid 1px;
border-color: #42698A;
border-radius: 10px;
width: 100%;
background-color: white;
padding-left: 10px;
padding-top: 10px;
}
#form {
display: flex;
flex-direction: row;
}
#column1 {
width: 100%;
margin: 15px;
}
#column2 {
width: 100%;
margin: 15px;
}
#submit {
display: flex;
justify-content: right;
}
.form-button {
display: inline-block;
width: fit-content;
border: none;
background-color: #42698A;
color: white;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 25px;
padding-right: 25px;
border-radius: 100px;
font-weight: 300;
cursor: pointer;
margin-top: 10px;
font-size: 15px;
}
.form-button:hover {
background-color: #002c4a;
transition: 300ms ease-in-out;
}
h1 {
color: pink;
font-size: 48px;
font-weight: bolder;
}
.g-recaptcha {
margin-top: 15px;
} .tab {
display: none;
} .step {
height: 10px;
width: 10px;
margin: 0 2px;
background-color: #d4d4d4;
border: none;
border-radius: 50%;
display: inline-block;
opacity: 0.5;
} .step.active {
opacity: 1;
} .step.finish {
background-color: #42698A;
} #prevBtn:hover {
background-color: #004980;
transition: 300ms ease-in-out;
}
.btn {
display: inline-block;
width: fit-content;
border: none;
background-color: #002c4a;
color: white;
padding-top: 11.5px;
padding-bottom: 11.5px;
padding-left: 25px;
padding-right: 25px;
border-radius: 100px;
font-weight: 300;
cursor: pointer;
margin-top: 10px;
font-size: 15px;
}
#nextBtn:hover {
background-color: #004980;
transition: 300ms ease-in-out;
}