.commonButton {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 150px;
    min-height: 48px;
    gap: 8px;
    padding: 12px 16px;
    background-color: var(--colors-persian-green-500);
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.commonButton-secondary {
    background-color: #ffffff;
    border: 1px solid var(--colors-persian-green-500);
}

.commonButton_text {
    font-size: 16px;
    line-height: 18px;
    color: #ffffff;
}

.commonButton_text-secondary {
    color: var(--colors-persian-green-500);
}