html{
	font-family: "Nata Sans", sans-serif;
}
body{
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-direction: column;
}
input::placeholder{
    color:#000;
}

main{
	width: 575px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.main_banner{
	background-color: #081f3f;
	height: 175px;
    z-index: 99;
}

.main_banner:after{
	content: "";
	display: block;
	width: 100%;
	height: 58px;
	background-image: url('../images/bg_shape.png');
	background-size: cover;
	background-position: center;
}

.banner_overlay{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: -1;
}

.glass{
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(4px) saturate(180%);
}

.form_form{
	padding: 40px 25px;
	border-radius: 25px;
	color: #000;
	box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.logo_container{
	width: 300px;
	padding: 20px 35px;
    text-align: center;
    border-radius: 50px;
}

.logo_container h1{
	font-size: 25px;
	color: #fff;
	margin-top: 20px;
}



.main-title{
	font-size: 35px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 5px;
}

.main_form{
	/*background-image: url(../images/form-bg.webp);
	background-size: cover;
	background-position: center;*/
	background-color: #fff;
	min-height: calc(100vh - 175px);
	display: flex;
	align-items: center;
}

.coupon_main{
	min-height: calc(100vh - 465px);
}

.form_form label{
	margin-bottom: 7px
}

.form_form .form-control{
	background: transparent;
    border: none;
    /* box-shadow: 0px 0px 7px -7px #7e7e7e; */
    background-color: rgba(231, 235, 252, .8);
    color: #000;
    height: 41px;
    border-radius: 25px;
    padding-left: 25px;
    border: 1px solid #d4d4d4;
    font-size: 13px;
}


.main_button{
	background-color: #081f3f;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	padding: 10px 25px;
	box-shadow: none;
	border-radius: 40px;
}

.main_button span{
	margin-left: 15px;
    font-size: 16px;
    background-color: #fff;
    color: #081f3f;
    border-radius: 25px;
    padding: 8px 14px;
}


.main_button:hover{
	color: #eee;
}

.form_form_coupon{
	padding: 40px 25px;
	border-radius: 25px;
	color: #081f3f;
	box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.form_form_coupon label{
	margin-bottom: 7px;
}

.form_form_coupon .form-control{
	background: transparent;
    box-shadow: 0px 0px 14px -7px #7e7e7e;
    background-color: rgba(231, 235, 252, .6);
    color: #081f3f;
    height: 65px;
    border-radius: 35px;
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: bold;
    border: 1px dashed;
}

.coupon_text{
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
}

.offer_details h1{
	font-size: 35px;
	font-weight: 800;
	text-transform: uppercase;
}

.terms_conditions{
    background-color: rgba(231,235,252,.6);
    padding-top: 15px;
    padding-bottom: 15px;
}

.terms_conditions ul{
	padding-left: 15px;
	margin: 0;
}

.terms_conditions ul li{
	font-size: 11px;
	margin-bottom: 8px;
}

.terms_conditions ul li:last-child{
	margin-bottom: 0px;
}


.accordion{
	width: 85%;
}


	.offer_details p{
		font-size: 14px;
		margin-bottom: 0;
	}

.accordion-button{
	justify-content: center;
}

.accordion-button:after{
	margin-left: 15px;
}

.shop_details p, .customer_details p{
	font-size: 13px;
	margin-bottom: 8px;
}


@media (max-width: 575px)
{
	main{
		width: 100%;
	}

}

@media (max-width: 450px)
{
	.form_form_coupon .form-control{
		font-size: 22px;
	    text-align: center;
	    text-transform: uppercase;
	    letter-spacing: 5px;
	}
	.coupon_text{
		font-size: 14px;
	}
	.offer_details h1 {
    	font-size: 28px;
	}
	.offer_details p{
		font-size: 14px;
	}

	.terms_conditions ul li{
		font-size: 9px;
		margin-bottom: 6px;
	}
	.accordion{
		width: 100%;
	}
}
