

 h1 {
    margin-block-start: .5rem;
    margin-block-end: 1rem;
    font-size: 2rem;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    line-height: 1;
    color: #0A243B;
    
    font-weight: 700;
    writing-mode: inherit;
    transform: rotate(0deg);
    text-align: center;
}

 p {
    color: var(#1E1E1E);

    text-align: center;
    writing-mode: inherit;
    box-sizing: border-box;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
    position: relative;
    margin: 0px 50px 0px 50px;
    text-indent: 0px;
    mix-blend-mode: inherit;
    margin-top: 30px;
}

 form {
    cursor: default;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    border-radius: 10px 10px 10px 10px;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    /* padding: 40px 50px 20px 50px;/ */
    background-color: #FFFFFF;
    margin-top: 30px;
    width: 70%;
    margin: auto;
}

 form h2 {
    text-align: center;
    text-indent: 0px;
    margin-block-start: .5rem;
    margin-block-end: 1rem;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    line-height: 1;
    color: #0A243B;
    
    font-size: 24px;
    font-weight: 700;
    writing-mode: inherit;
    transform: rotate(0deg);
}

 .row {
    margin-top: 30px;
    row-gap: 20px;
}

 form .inputDiv,
 form .inputDiv2 {
    width: 100%;
    display: flex;
    flex-direction: column;
}

 form .inputDiv label,
 form .inputDiv2 label {
    
    text-align: left;
    vertical-align: middle;
    box-sizing: border-box;
    display: inline-block;
    line-height: inherit;
    margin-bottom: 0;
    font-weight: 400;
    margin-bottom: 5px;
}

 form .inputDiv label sup {
    color: red;
}

 form .inputDiv input,
 form .inputDiv select {
    font-size: 1rem;
    margin: 0;
    box-sizing: border-box;
    display: block;
    width: 100%;
    background-clip: padding-box;
    background-image: none;
    border: 1px solid var(--fluentform-border-color);
    border-radius: var(--fluentform-border-radius);
    color: var(--fluentform-secondary);
    
    line-height: 1;
    margin-bottom: 0;
    max-width: 100%;
    padding: 11px 15px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 45px;
}

 form .inputDiv textarea {
    font-size: 1rem;
    margin: 0;
    box-sizing: border-box;
    display: block;
    width: 100%;
    background-clip: padding-box;
    background-image: none;
    border: 1px solid var(--fluentform-border-color);
    border-radius: var(--fluentform-border-radius);
    color: var(--fluentform-secondary);
    
    line-height: 1;
    margin-bottom: 0;
    max-width: 100%;
    padding: 11px 15px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

 .tab-container {
    display: inline-block;
    /* border: 2px solid #ddd; */
    /* border-radius: 8px; */
    /* overflow: hidden; */
}

.tab-container input {
    display: none;
}

.tab-label {
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block;
    background: #f4f4f4;
    border-right: 1px solid #ddd;
    font-weight: bold;
}

.tab-label:last-of-type {
    border-right: none;
}

.tab-label:hover {
    background: #e0e0e0;
}

.tab-container input:checked+.tab-label {
    background: #0A243B;
    color: white;
}

.tab-content {
    display: none;
    padding: 20px;
    border-top: 2px solid #ddd;
    background: #f9f9f9;
}

#yes-tab:checked~.content-yes,
#no-tab:checked~.content-no {
    display: block;
}

 form button {
    background-color: #2e516f;
    color: white;
    padding: 14px 39px;
    border-radius: 10px;
    border: none;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 24px;
}

 form span {
    display: inline-block;
    text-align: justify;
    color: #7A7A7A;
    
    font-size: 11px;
    font-weight: 400;
    writing-mode: inherit;
    text-indent: 0px;
    margin-block-start: 0;
    margin-block-end: .9rem;
    box-sizing: border-box;
    /* line-height: 100%; */
}