.partner-form__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.partner-form__title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 774px;
}

.partner-form__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-15);
    background: var(--background-color-white);
    width: clamp(320px, 100%, 620px);
}

.form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8.5px;
    align-self: stretch;
    background: var(--color-button-primary-red);
    border: none;
    border-radius: 12px;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 16px;
}

.form__block {
    display: flex;
    flex-direction: column;

    input {
        padding: 8px 0;
    }
}

.form__multicheck-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 12px;
}

.form__multicheck {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ACAEB2;
    white-space: nowrap;
}