#rocola-coupon-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px auto;
    gap: 8px;
}
#rocola-coupon-form button[type="submit"] {
    background-color: #8038FC;
    color: #FFFFFF;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 45px;
    font-weight: bold;
}
#coupon_code {
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 250px;
}
#rocola-coupon-form input.error-border {
    border: 2px solid red;
}
#rocola-coupon-message {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}
#rocola-coupon-message.success {
    color: green;
}
#rocola-coupon-message.error {
    color: red;
}
