* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ECECEC;
    color: #B2A561;
font-family:  Roboto;
}

.banner {
    width: 100%;
    height: 560px;
    object-fit: cover;
}
.logo{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding-top: 32px;
}
.form-container {
    background: rgb(255, 255, 255);
    background: linear-gradient(
180deg
, rgba(255, 255, 255, 1) 0%, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 1) 18%);
    border-radius: 10px;
    margin-top: -130px;
    padding-top: 100px;
    backdrop-filter: blur(.7rem);
}
.form-container h1{
    text-align: center;
    text-shadow: 2px 4px 0px #fff;
    font-size: 32px;

}
.form-container form {
    padding: 60px 75px
}
.form-container form h2{
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    margin-left: 15px;
}
.form-container form h2::after{
    content: '';
    position: absolute;
    background-color: #B2A561;
    height: 2px;
    width: 50%;
    top: 100%;
    left: 0;
    border-radius: 50px;
}
.form-container form h2::before{
    content: '';
    position: absolute;
    background-color: #B2A561;
    height: 2px;
    width: 10%;
    top: 100%;
    left: 55%;
    border-radius: 50px;
}
.form-container form label{
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
    display: block;
}
.form-container form .form-control{
    font-size: 16px;
    border-radius: 4px;
    padding: 13px 16px;
    width: 100%;
    border: 1px solid #CCCCCC;
    box-shadow: 0px 15px 20px 0px rgb(0 0 0 / 10%);
    margin-bottom: 12px;
    outline: 0;
    transition: .6s;
    max-width: 100%;
}
.form-container form .form-control:focus,.form-container form .form-control:active{
    border-color: #B2A561;

}
.form-container form .form-control::placeholder{
    color: rgba(25, 35, 62, 0.25);
}
.form-container form textarea{
    width: 100%;
    margin-top: 12px;
    margin-bottom: 32px;
}
.btn-theme{
    background-color: #B2A561;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    outline: 0;
    box-shadow: none;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #B2A561;
    transition: .6s;
    cursor: pointer;
}
.btn-theme:hover,.btn-theme:focus{
    background-color: #fff;
    color: #B2A561;
}

.with-love {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #000;
    padding: 12px 0;
}

.with-love i {
    align-items: center;
    display: inline-flex;
    color: #D42525;
    margin: 0 7px;
	animation: heart-beat infinite 0.8s;
}
.with-love .dimlogo{
    margin-left: 8px;
}
.thankyou p{
    margin-top:10px;
}
.thankyou a,.thankyou a:focus,.thankyou a:active{
    color:#B2A561;
    font-weight:bold;
}

@keyframes heart-beat {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
@media(max-width:1024px){
    .form-container form{
        padding: 60px 15px;
    }
    .form-container h1{
        font-size: 28px;
    }
    .form-container h2{
        font-size: 24px;
    }
}
@media(max-width:768px){
    .banner{
        height: 166px;
    }
    .logo img{
        height: 45px;
    }
    .form-container{
        margin-top: -45px;
        padding-top: 32px;
        margin-left: -15px;
        margin-right: -15px;
    }
    .form-container form{
        padding: 16px 0;
    }
    .form-container h1{
        font-size: 24px;
        font-weight: 300;
        text-shadow: 2px 0px 0px #fff;
    }
    .form-container form h2{
        font-size: 16px;
        margin-bottom: 12px;
    }
    .form-container form label{
        font-size: 12px;
    }
}