﻿.contact-form-wrapper {
    background: #f9f9f9;
    padding: 4rem;
    border-radius: 10px;
    border: 1px solid #eaeaea;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
}

label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1.5rem;
}

p.icon-line {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3c8de0 !important;
    font-weight: 500;
}

    p.icon-line i {
        color: #ffffff;
        display: inline-block;
        height: 4rem;
        font-size: 1.6rem;
        width: 4rem;
        justify-content: center;
        display: flex;
        align-items: center;
        border: 2px solid;
        border-radius: 50%;
        background: #3c8de0;
    }

.contact-box h3 {
    color: #294831;
    font-weight: 700;
}

.contact-box h4 {
    color: #294831;
    font-weight: 700;
    font-size: 2.25rem;
}

.contact-form input,
.contact-form textarea {
    font-size: 2rem;
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    color: #000;
}

.phone-row {
    display: flex;
    gap: 10px;
}

    .phone-row input {
        flex: 1;
    }

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

button {
    padding: 14px;
    border: none;
    border-radius: 50px;
    background-color: #222;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

    button:hover {
        background-color: #000;
    }

.thank-you {
    text-align: center;
    font-size: 1.2rem;
    color: green;
}

p.success {
    color: #004304;
    background: linear-gradient(135deg, #a5cbe93d, #4dc3461c);
    border: 3px solid;
    padding: 2rem;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 3px 3px;
}

.form-group {
    margin-bottom: 3rem;
}

.contact-box:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

@media (max-width: 600px) {

    .form-row,
    .phone-row {
        flex-direction: column;
    }
}
