@import url('https://fonts.googleapis.com/css?family=Montserrat|Ubuntu:300,400,600,700');
*{
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: Ubuntu;
	text-decoration: none;
}
*:focus{
	outline: none;
}
html,body{
	background-color: #f7fcff;
	background-color: #eff3f4;
}
.shadow{
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10);
}
.shadow-md{
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12),
    0 2px 4px 0 rgba(0,0,0,0.08);
}
.shadow-lg{
	box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11),
    0 5px 15px 0 rgba(0,0,0,0.08);
}
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-width: 75px;
	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{
	position: relative;
	bottom:10px;
	padding:40px 0px;
}
@media screen and (max-width: 600px){
	.content_container{
		padding:20px 0px;
	}
}
.content_container h1{
	text-align: center;
	color:#202020;
	font-weight: bold;
	font-family: Ubuntu;
	margin-bottom:0px;
}
.content_container p{
	padding-top:0px;
	text-align: center;
	font-family: Montserrat;
	font-weight: bold;
	font-size: 16px;
}
.form{
	max-width: 600px;
	padding:30px 50px;
	background-color: white;
	margin:auto auto 100px;
	position: relative;
}
@media screen and (max-width: 500px){
	.form{
		padding:30px 20px;
	}
}
.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;
	color:#666;
	font-weight: 400;
}
.form .heading {
	position: relative;
	width: calc(100% + 100px);
	max-width: none;
	left:-50px;
	padding:10px 50px;
	margin:5px 0px;
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
	background-color: #f1f1f1;
}
@media screen and (max-width: 500px){
	.form .heading{
		width: calc(100% + 40px);
		left:-20px;
		padding:10px 20px;
	}
}
.form .heading span{
	color:#292929;
	font-weight: 600;
}
.form label .input{
	display: block;
	width: 100%;
	resize: none;
	border:none;
	border-bottom: 1px solid #d9d9d9;
	padding:7px 0px;
	font-weight: bold !important;
	line-height: normal;
	color:#292929;
	background-color: white !important;
}
.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: #bf9e61; /* Logo */
	background-color: #4CAF50; /* Green */
	background-color: #3b9cde; /* Blue */
	color:#fff;
	font-family: Montserrat;
	font-size: 12px;
	text-transform: uppercase;
	transition: 0.3s background-color, 0.3s color;
	transition: 0.3s opacity;
	font-weight: bold;
	letter-spacing: 1px;
	opacity: 0.9;
}
.form button:hover, .form button:focus, .form button:active{
	opacity: 1;
}
.form button.load{
	background:url('https://sangraha.net/s90/images/loading_white.gif') no-repeat center;
	background-color: #3b9cde;
	background-size: 25px;
	height: 47px;
	font-size: 0px;
}
.form .buttons{
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.form .buttons .back{
	background-color: #424242;
	color:white;
}
.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: 20;
}
.error_container p{
	text-align: center;
	padding:0px 20px;
	font-weight: bold;
	font-family: Montserrat;
	line-height: normal;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0px;

}
.error_container i{
	position: absolute;
	right:15px;
	top:50%;
	transform: translateY(-50%);
	cursor: pointer;
	padding:5px;
	font-size: 22px;
} 
.success_container{
	display: none;
	text-align: center;
}
.success_container img{
	max-width: 110px;
	margin-bottom: 10px;
}

/* Radio */
.new_radio{
	margin-bottom: 10px;
}
.new_radio span{
	display: inline-block;
	width: 35px;
	height: 35px;
	border:2px solid #9c9c9c;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 5px;
}
.new_radio input[type=radio]{
	display: none;
}
.new_radio input[type=radio]:checked + span{
	background: url('https://sangraha.net/s90/images/tick2.png') no-repeat center;
	background-size: 20px;
	border-color:#3b9cde;
	background-color: #3b9cde;
}
/* Radio */