/* CONTACT FORM */
#contact-row .col:nth-child(1) {
    width: 40%;
}

#contact-row .col:nth-child(2) {
    width: 60%;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    color: var(--primary);
}

.contact-form-wrapper h2,
.contact-form-wrapper p {
    text-align: center;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 9px;
    border: 1px solid var(--secondary);
    font-size: 18px;
}

.contact-form-wrapper input:focus-visible,
.contact-form-wrapper textarea:focus-visible {
    border: 3px solid var(--secondary);
    outline: none;
}

.contact-form-wrapper #gdpr {
    width: fit-content;
}

.contact-form-wrapper .primary-btn {
    margin-top: 20px;
    padding: 15px 0;
    background-color: var(--secondary);
}

#contact-row i {
    margin-right: 10px;
}

#contact-row a {
    transition: var(--transition);
}

#contact-row a:hover {
    text-decoration: underline;
    transition: var(--transition);
}

.legal-info p {
    margin: 0;
}

@media all and (max-width: 768px) {
    .contact-form-wrapper {
        width: 100%;
        padding: 30px;
    }

    .contact-form-wrapper input {
        font-size: 16px;
    }

    .contact-form-wrapper form label {
        font-size: 12px;
    }

    #contact-row .col:nth-child(1),
    #contact-row .col:nth-child(2) {
        width: 100%;
    }

    .legal-info p {
        text-align: left;
    }
}