*{
    box-sizing: border-box;
}
.coupon-container{
    display: flex;
    align-items: center;
    justify-content: center;
	margin: 0 auto;
	width: 100%;
}
.coupon-card{
    background: linear-gradient(135deg, #7158fe, #9d4de6);
    color: #fff;
    text-align: center;
    padding: 30px 10px;
    position: relative;
	margin: 0 auto;
	width: 100%;

}
.coupon-card h3{
	color: #fff;
    font-size: 28px;
	line-height: 30px;
    font-weight: 500;
	margin: 0;
	padding: 0;
}
.coupon-card h3 strong{
    font-weight: 700;
	color: yellow;
}

.coupon-card p{
	color: #fff;
    font-size: 14px;
	line-height: 16px;
	margin: 0;
	padding: 0;
}
.coupon-row{
    display: flex;
    align-items: center;
    margin: 20px auto;
    width: fit-content;
}
#cpnCode{
    border: 2px dashed #fff;
    padding: 10px 20px;
    border-right: 0;
	font-weight: 700;
}
#cpnBtn{
    border: 2px solid #fff;
    background: #fff;
    padding: 10px 20px;
    color: #7158fe;
    cursor: pointer;
	font-weight: 700;
}
