.contact__form {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
    justify-content: center;
}
.contact__form-group,
.contact__code-form-group {
    flex: 1 1 calc((100% - 2.4rem) / 2);
    display: flex;
    flex-direction: column;
}
.contact__form-group label,
.contact__code-form-group label {
    font-size: 1.6rem;
    cursor: pointer;
    font-weight: 600;
    color: #3b73ed;
    margin-bottom: 1.2rem;
}
.contact__form-group input,
.contact__code-form-group input,
.contact__form-group select {
    display: flex;
    padding: 1.2rem;
    border-radius: 11px;
    border: none;
    outline: none;
    color: #555;
    font-family: inherit;
    background-color: #f9f8f8;
    transition: all 0.3s;
}
.contact__form input:focus {
    box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.2);
}
.contact__form-note {
    font-family: inherit;
    border: none;
    outline: none;
    border-radius: 11px;
    background-color: #f9f8f8;
    padding: 0.3rem;
}
.contact__form-btn,
.contact__form-code-btn {
    display: inline-block;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    width: 50%;
    font-size: 1.6rem;
    margin-top: 1.8rem;
    padding: 1.5rem 3.5rem;
    border-radius: 11rem;
    border: none;
    color: #fff;
    background-color: #2563eb;
    transition: background 0.3s;
}
.contact__form-btn:hover {
    background-color: #1e4fbc;
    color: #f1f1f1;
}
.contact__form-code-btn {
    width: 100%;
}
.contact__code-form-group {
    max-width: 100%;
}
.contact__code-form {
    width: 50%;
    align-self: center;
    justify-self: center;
}

.contact__form-note {
    border: 1.5px solid #ccc;
    padding: 10px;
    resize: none;
    border-radius: 5px;
    font-size: 1.4rem; /* بزرگ‌تر کردن سایز فونت */
    font-family: inherit;
    min-height: 200px; /* ارتفاع حداقل textarea */
    width: 100%; /* برای پر کردن عرض کانتینر */
    box-sizing: border-box; /* padding و border داخل سایز حساب میشن */
}
