
.contact-form1 {
    background: #f2f2f2 url('/images/logoicon2.svg') no-repeat bottom right;
    padding: 70px 0;
}

.contact-form1 .left {
    padding-right: 40px;
}

    .contact-form1 .left h2 {
        color: #303030;
        font-size: 40px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
    }

.contact-form1 h2 + p {
    font-size: 16px;
    line-height: 1.8;
}

.contact-form1 .right {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
}

.contact-form1 .row {
    margin-bottom: 10px;
}

.contact-form1 label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.contact-form1 input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

    .contact-form1 input:focus {
        border-color: #7AC143;
        box-shadow: 0 0 0 3px rgba(126,24,24,.15);
    }

    .contact-form1 input::placeholder {
        color: #999;
    }

.contact-form1 button {
    width: 100%;
    padding: 10px 15px;
    background: #7AC143;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    margin-top: 20px;
}












#loadingOverlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.7);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top: 6px solid #c4122f;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}