.purchase {
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.purchase > * {
    max-width: 790px;
}

.purchase-title-block {
    text-align: center;
    margin-bottom: 32px;
}

.purchase-form-block {
    background-color: #151A18;
}

.purchase-title {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin: 64px 0 8px;
}

.purchase-subtitle {
    color: var(--dark-40);
    line-height: 140%;
}

.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 64px;
}

.input-label {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.name-n-email-fields {
    display: flex;
    gap: 30px;
}

.purchase-input-field {
    color: var(--dark-20);
    font-size: 16px;
    font-weight: 400;
    border-radius: 8px;
    background: #3A3A3A;
    padding: 13px 16px;
}

.name, .email {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 1 50%;
    height: 48px;
}

.goal, .data, .use-сases, .type-of-organization, .about-us, .organization-name {
    flex: 0 0 100%;
}

.about-us {
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("../../assets/icons/arrow_down.svg") no-repeat, #3A3A3A;
    background-position-x: 99%;
    background-position-y: 50%;
    background-size: 24px 24px;
}

.radio {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--white);
}

.radio label:hover {
    cursor: pointer;
}

input[type="radio"] {
    display: none;
}

label {
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
}
label:before {
    content: '';
    position: absolute;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: var(--dark-80);
    border-radius: 50%;
}
input[type="radio"]:checked + label:before {
    background-color: var(--green);
}

input[type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    left: 3px;
    top: 4px;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.purchase-form .primary-button {
    font-weight: 400;
    width: 100%;
}

@media screen and (max-width: 960px) {
    .purchase {
        align-items: unset;
    }

    .input-label {
        font-size: 16px;
    }

    .name-n-email-fields {
        gap: 16px;
    }
}

@media screen and (max-width: 590px) {
    .purchase-title {
        font-size: 20px;
    }

    .name-n-email-fields {
        flex-wrap: wrap;
        gap: 8px;
    }

    .name, .email {
        flex: 1 1 100%;
        height: unset;
    }
}