@import url('https://fonts.googleapis.com/css?family=Montserrat|Ubuntu');
*{
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: Ubuntu;
	text-decoration: none;
}
*:focus{
	outline: none;
}
.heading{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 40px;
}
.wrapper{
	width:90%;
	max-width: 900px;
	margin:auto auto;
}
.form{
	max-width: 600px;
	padding: 50px;
	background-color: white;
	margin:auto auto 50px;
	box-shadow: 0 0 3px #ccc;
}
.form .col2{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
.form .col3{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
}
.form .col2.center{
	max-width: 250px;
	margin:auto;
	grid-gap: 0px;
}
.form label{
	display: block;
	padding:10px;
}
.form label span{ 
	font-size: 14px;
	font-weight: normal;
}
.form label .input{
	display: block;
	width: 100%;
	resize: none;
	border:none;
	border-bottom: 1px solid #d9d9d9;
	padding:7px 0px;
	font-weight: bold;
	line-height: normal;
}
.form label .input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
.form button{
	display: block;
	margin:20px auto auto;
	width: calc(100% - 20px);
	padding:12px;
	text-align: center;
	border:none;
	background-color: #e67817;
	color:#fff;
	font-family: Montserrat;
	font-size: 12px;
	text-transform: uppercase;
	transition: 0.3s background-color, 0.3s color;
	font-weight: bold;
	letter-spacing: 1px;
}
.form button:hover, .form button:focus, .form button:active{
	background-color: #ea852d;
	color:white;
}
.form button.load{
	background:url('https://sangraha.net/s90/images/loading_white.gif') no-repeat center;
	background-color: #ea852d;
	color:white;
	background-size: 25px;
	height: 47px;
}

.error_container{
	display: none;
	position: fixed;
	top:0;
	left:0;
	width:100%;
	padding:15px 20px;
	background-color: rgba(0,0,0,0.8);
	color: white;
	z-index: 100;
}
.error_container p{
	text-align: center;
	padding:0px 20px;
	line-height: normal;
	margin: 0px;
}
.error_container i{
	position: absolute;
	right:15px;
	top:50%;
	transform: translateY(-50%);
	cursor: pointer;
	padding:5px;
} 
.success_container{
	display: none;
	text-align: center;
}
.success_container img{
	max-width: 110px;
	margin-bottom: 10px;
}

/* Footer */
.jsb-comp-footer{
	position: relative;
	top:20px;
}