.form-group{
    line-height: normal;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    margin-bottom: 5px;
}
.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="tel"]{
    font-family: Innerspace;
    color: #141414;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #078049;
    padding: 13px 11px;
}
.form-group input[type="text"]:focus-visible,
.form-group input[type="password"]:focus-visible,
.form-group input[type="email"]:focus-visible,
.form-group input[type="tel"]:focus-visible{
    outline: none;
    border: 1px solid #078049;
}
.form-label {
    position: relative;
    right: initial;
    top: 31px;
    left: 21px;
    transition: .3s all;
    pointer-events: none;
    height: 16px;
    display: block;
    font-size: 16px;
    width: fit-content;
    color: #969696;
    z-index: 2;
}
.form-label.input_active{
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    background-color: #fff;
    color: #078049;
    left: 20px;
    padding: 2px 4px;
    top: 8px;
}
.form-group-radio{
    margin: 20px 0 10px;
}
.form-group-radio input[type="radio"],
.form-group-radio input[type="radio"]:hover{
    accent-color: #078049;
}
input[type="email"]:invalid,
input[type="tel"]:invalid{
    border-color: #CD2E3D;
}
.form-group-check{
    display: flex;
    flex-direction: row;
    text-align: start;
    align-items: center;
    margin: 20px 0;
}
.form-group-check input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    cursor: pointer;
    height: 24px;
    width: 0;
    margin: 0 42px 0 0;
}
.form-group-check input[type=checkbox]:before {
    content: "";
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
    border: 1px solid #078049;
    border-radius: 0;
    background-color: white;
}
.form-group-check input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 6px;
    height: 14px;
    border: solid #078049;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 3px;
    left: 9px;
}
.form-group-check label{
    color: #B7B7B7;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.form-group-link,
.form-group-text{
    margin: 20px 0;
    display: flex;
    justify-content: center;
}
.form-group-link,
.form-group-text,
.form-group-link a{
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.form-group-link,
.form-group-link a{
    color: #078049;
}
.form-group-link:hover,
.form-group-link a:hover{
    text-decoration: underline;
}

form.disable{
    opacity: .6;
    pointer-events: none;
}

.form-button{
    margin-top: 20px;
}
.form-button .button-primary{
    width: 100%;
}
.form-links-wrapper{
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-group-wrapper + .form-group-wrapper{
    margin-top: 50px;
}
.form-group-wrapper .title-3{
    margin-bottom: 10px;
}
