@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,800|Ubuntu:300,400');
*{
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: Ubuntu;
	text-decoration: none;
}
:root{
	--primary-color: #de793c;
}
*:focus{
	outline: none;
}
html, body{
	background-color: #f7fcff;
	background-color: #eff3f4;
}
header{
	height: 80px;
	background-color: white;
	border-bottom: 1px solid #ccc;
}
.wrapper{
	width:90%;
	max-width: 900px;
	margin:auto auto;
}
header .logo{
	position: relative;
	width: 200px;
	height: 80px;
	float: left;
}
header .logo img{
	max-height: 50px;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
}
header a{
	display: inline-block;
	float: right;
	height: 80px;
	line-height: 80px;
	color:#424242;
	text-transform: uppercase;
	font-size: 12px;
	font-family: Montserrat;
	letter-spacing: 1px;
	font-weight: bold;
}
.content_container{
	padding:40px 0px;
}
.content_container h1{
	text-align: center;
	color:#424242;
	font-weight: bold;
}
@media screen and (max-width: 700px){
	.content_container h1{
		font-size: 20px;
	}
}
.content_container p{
	padding-top:10px;
	text-align: center;
}
.form{
	max-width: 500px;
	padding:30px 50px;
	background-color: white;
	margin:auto auto 50px;
	box-shadow: 0 0 3px #ccc;
}
.form label{
	display: block;
	padding:10px;
}
.form label span{ 
	font-size: 14px;
	color:grey;
}
.form label .input{
	display: block;
	width: 100%;
	resize: none;
	border:none;
	border-bottom: 1px solid #d9d9d9;
	padding:7px 0px;
	font-weight: bold;
	font-size: 13px;
	background-color: white;
}
.form label .amount{
	text-align: center;
	font-size: 30px;
	font-family: Montserrat;
	background:url('https://i.postimg.cc/Ssw-M8xvh/india.png') no-repeat center left;
	background-size: 20px;
	color:var(--primary-color);
}
.form button{
	display: block;
	margin:5px auto auto;
	width: calc(100% - 20px);
	padding:12px;
	text-align: center;
	border:none;
	background-color: var(--primary-color);
	color:white;
	font-family: Montserrat;
	font-size: 12px;
	text-transform: uppercase;
	transition: 0.3s background-color;
	font-weight: bold;
	letter-spacing: 1px;
}
.form button:hover, .form button:focus, .form button:active{
	background-color: #FF5722;
}
.form button.load{
	background:url('https://sangraha.net/s90/images/loading_white.gif') no-repeat center;
	background-color: #FF5722;
	background-size: 25px;
	height: 41px;
}
.form .col2{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
.form .col3{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 5px;
}
.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;
}
.error_container p{
	text-align: center;
	padding:0px 20px;
	margin:0;
}
.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;
}
.success_container p{
	line-height: 24px;
	color:#424242;
}