
.btn,
.catalog-card__btn,
.form-submit,
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 28px;

    background: #fff;
    border: 1px solid #ce0a3a;
    border-radius: 12px;

    color: #ce0a3a;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease;

    cursor: pointer;
}

.btn:hover,
.catalog-card__btn:hover,
.form-submit:hover,
button[type="submit"]:hover {
    background: #ce0a3a;
    border-color: #ce0a3a;
    color: #fff;
}

.catalog-card__btn {
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
}
