body{
    background-color: #E0F1E8;
    padding:2rem 1rem;
}

.hidden{
    display:none;
}


.send{
    position:fixed;
    top:1.5rem;
    width:20.43rem;
    left:50%;
    transform:translateX(-50%);
}


.send-content h2{
    display:flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap:0.625rem;

}

.send-content h2 p{
    font-family: Karla;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    color:#FFF;


}

.send-thanks{
    font-family: Karla;
    color:#E0F1E8;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */

    z-index: 2;
}

.send{
    background-color: #2A4144;
    padding:1.5rem;
    border-radius: 0.75rem;

}



.error{
    color:#D73C3C;
    font-family: Karla;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}


label{
    display:block;
    padding-left:0;
    padding-top:0;
    margin-left:0;

}


main{
    position:relative;
    background-color: #FFF;
    padding:1.5rem;
    border-radius: 1rem;
}

h1{
    text-align: left;
    color:#2A4144;
    font-family: Karla;
    font-size: var(--font-size-heading, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 32px */
    letter-spacing: -1px;
}

input{
    display:block;
}




.text-input-field{
    width:100%;
    margin-top:0.5rem;
    padding:0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #86A2A5;
}

.text-input-label{
    color:#2A4144;
    font-family: Karla;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    margin-top:0.5rem;
    line-height: 150%; /* 24px */
}


.text-input-wrapper{

}

.general-data-wrapper{
    margin-top:2rem;
    display:flex;
    flex-direction: column;
    gap:1.5rem;
}



fieldset {
    margin: 1rem 0 0 0;
    padding: 0;
    border: 0;
    min-width: 0;
    display: block;
}

legend {
    margin: 1rem 0 0 0;
    padding: 0;
    display: block;
}

.radio-wrapper{
    color:#2A4144;
    padding:0.75rem 1.5rem;
    border: 1px solid #86A2A5;
    border-radius: 0.5rem;
    display:flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap:0.75rem;
    font-family: Karla;
    font-size: var(--font-size-body-md, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}

.radio-buttons-wrapper{
    display:flex;
    flex-direction: column;
    gap: 1rem;
    margin-top:1rem;
}

input[type="radio"]{
    margin:0;
    flex-shrink:0;
}


textarea{
    border: 1px solid #86A2A5;
    border-radius: 0.5rem;
    height:15rem;
    padding:0.75rem 1.5rem;
    width:100%;
    resize: none;
    margin-top:0.5rem;

}

.message-wrapper{
    margin-top:1.5rem;
}

button{
    border:none;
    display:block;
    width:100%;
    text-align: center;
    margin-top: 2.5rem;
    color:#FFF;
    font-size:1.125rem;
    padding:1rem 0;
    border-radius: 0.5rem;
    background-color: #0C7D69;

}

button:hover{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%),  #0C7D69;

}


.consistent-wrapper{
    margin-top:2.5rem;
    display:flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap:1.25rem;

}

#consent{

}

input[type="checkbox"]{
    margin: 0;
}

.text-input-field:hover {
    border:1px solid #0C7D69;
}

.text-input-field:focus{
    outline: none;
    border:1px solid #0C7D69;
}



input[type="checkbox"]:checked{
    accent-color: #0C7D69;
}

textarea:focus{
    outline: none;
    border:1px solid #0C7D69;
}

.error-border{
    border: 1px solid #D73C3C;
}


.radio-checked{
    background-color:#E0F1E8;
}

.radio-checked input[type="radio"]{
    accent-color:#0C7D69 ;

}

.radio-checked input[type="radio"]:hover{
    box-shadow:none;
    background-color:#0C7D69;
}

#consent-error{
    margin-top:0.5rem;
}


@media (min-width: 1100px){
    .general-data-wrapper{
        display:grid;
        grid-template-columns: repeat(2,1fr);
        /*display:flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
        gap:1rem;*/
    }
    .text-input-wrapper:last-child{
        grid-column: 1/3;
    }

    .radio-buttons-wrapper{
        display:grid;
        grid-template-columns: repeat(2,1fr);
    }

    body{
        padding:8rem 22rem 8rem 22rem;
    }
    .send{
        width:28rem;
    }
}

