.coupon__title {
    margin-bottom: 5px;
}

.coupon__form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.coupon__field-wrap {
    flex: 1;
    min-width: 0;
}

.coupon__sbm-btn-wrap {
    flex-shrink: 0;
    width: 120px;
}

.coupon__field {
    height: 46px;
    padding: 0 15px;
    border-radius: 50px;
    background-color: #fff;
    color: #000;
    width: 100%;
    display: block;
    border: 1px solid #e0e5eb;
    outline: none !important;
    font-size: 14px;
}

.coupon__sbm-btn {
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 46px;
    color: #fff;
    border-radius: 100px;
    width: 100%;
    border: none;
    background: #EBB235;
    transition: all .3s;
    cursor: pointer;
}

@media (hover:hover) {
    .coupon__sbm-btn:hover {
        background: #F2A600;
    }
}

.coupon__sbm-btn:active {
    background: #F2A600;
}

.coupon__sbm-btn:disabled {
    opacity: .7;
    cursor: wait;
}

.coupon__msg {
    display: none;
    margin-top: 4px;
    color: #0fb10f;
}

.coupon__msg.active {
    display: block;
}

.coupon__msg._error {
    color: #f03d3d;
}
