.contact-form{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 55px;
}

.contact-form span, .contact-form .form-label{
    font-family: var(--accord);
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    color: var(--dark);
    text-align: justify;
}

.contact-form .form-label{
    font-weight: 500;
}

.contact-form span.error-message{
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary);
}

.contact-form .form-control{
    background: transparent;
    border: 1px solid var(--dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 80px 10px 15px;
    color: var(--dark);
    font-family: var(--accord);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.btn-submit{
    background-color: var(--secondary);
    border-radius: 8px;
    color: var(--white);
    padding: 4px 22px;
    border: none;
    cursor: pointer;
    font-family: var(--accord);
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    box-shadow: 0 4px 9px -4px rgba(0,0,0,.35);
    text-transform: capitalize;
}

.btnt-submit:hover{
    background-color: var(--white);
    color: var(--primary);
}

.read-policy{
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--aptos);
    font-size: 14px;
    font-style: normal;
}

.read-policy a{
    font-weight: bold;
    cursor: pointer;
}