.btn {
    display: flex;
    height: 44px;
    padding: 8px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;

    &.btn--full-width {
        width: 100%;
    }

    &.btn--primary {
        background: var(--primary);
        color: var(--white);
    }
    &.btn--secondary {
        background: var(--secondary);
        color: var(--white);
    }
}
