* {
	padding:0;
	margin:0;
}
body {
	font-family:Verdana, Geneva, sans-serif;
	font-size:14px;
	background:#0d2446;
	 /*background: url(./images/bg.jpg) no-repeat center center;*/
	background-size:cover;
	height:100%;
	width:100%;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	height: 0;
}
.card {
	background:#00000054;
	width:700px;
	max-width:100%;
	box-sizing:border-box;
	padding:15px;
	margin:5% auto 5%;
	position:relative;
	z-index:1;
	border-radius: 15px;

}
.form_container {
	padding:15px;


}
.card h2 {
	font-size:1.5em;
	line-height:1.5em;
	margin:0;
	    color: #03ae04;

}
.card .title_container {
	text-align:center;
	margin:-15px -15px 15px;
	padding:15px 0;
	border:1px dotted #ccc;
	background-color: #fff;
	border-radius: 15px 15px 0px 0px;
}
.card h3 {
	font-size:1.1em;
	font-weight:normal;
	line-height:1.5em;
	margin:0;
}
.card .row {
	margin:10px -15px;
}
.card .row > div {
	padding:0 15px;
	box-sizing:border-box;
}
.card .col_half {
	width:50%;
	float:left;
}
.col_full {
	width:100%;
}
.card label {
	display:block;
	margin:0 0 5px;
}
.card .input_field, .card .textarea_field {
	position:relative;

}
/*.card .input_field > span, .card .textarea_field > span {
	position:absolute;
	left:0;
	top:0;
	color:#333;
	height:100%;
	border-right:1px solid #ccc;
	text-align:center;
	width:30px;
}
.card .textarea_field > span {
	border-bottom:1px solid #ccc;
	max-height:35px;
}
.card .input_field > span > i, .card .textarea_field > span > i {
	padding-top:12px;
}
*/
.card label {
	color: #fff;
	font-weight: 500;
	
}

.card input[type="text"], .card input[type="email"], .card input[type="tel"], textarea, select{
	width:100%;
	padding:10px;
	border:1px solid #ccc;
	box-sizing:border-box;
	outline:none;
	background-color: #a5369200;
	transition: all 0.30s ease-in-out;
	color: #fff;
}
select option{
        background-color: #09182f;
}
.card textarea {
	height:8em;
}
.radio--type{
	color: #fff;
	margin: 0px 20px 0px 5px;

}
.card input[type="text"]:focus, .card input[type="email"]:focus, .card input[type="tel"]:focus, textarea:focus {
	-webkit-box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	-moz-box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
	border:1px solid #fff;
}
.card input[type="submit"] {
	background:#fff;

	line-height:50px;
	width:20%;
	display: block;
	margin: 25px auto 25px auto;
	border-radius: 5px;
	border:none;
	outline:none;
	cursor:pointer;
	color:#0d2446;
	font-size:1.2em;
	transition: all 0.30s ease-in-out;
}
::placeholder {
  color: #ccc;
}
.card input[type="submit"]:hover, .card input[type="submit"]:focus {
	background:#0d2446;
	color: #fff;
}
.credit{
	position:relative;
	z-index:1;
	text-align:center;
	padding:15px;
	color:#fff;	
}
.credit a{
	color:#0d2446;	
}
.raidoBoxes .item {
    display: inline-block;
    margin: 0 0 15px 10px;
    position: relative;
}
 .raidoBoxes .item input {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
}
.raidoBoxes .item label {
    display: block;
    background: #fff;
    padding: 13px 13px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top:15px;
}
.raidoBoxes .item input:checked + label, .raidoBoxes .item:hover label {
    background: #3763ac;
    color: #fff;
}
@media (max-width: 600px) {
.card .col_half {
	width:100%;
	float:none;
}
.card label {
	margin:10px 0;

}

.card input[type="submit"] {
	width:30%;
}

}