@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
body{
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
}
.header {
    float: left;
    width: 100%;
    height: 380px;
    overflow: hidden;
}
.header img{
	width: 100%;
}
.logo-box {
    position: absolute;
    top: 100px;
    text-align: center;
    float: left;
    width: 100%;
    padding: 40px 0;
}
.logo-box img {
    width: 175px;
}
.logo-box h1{
	font-weight: bold;
	color: #fff;
	font-family: 'Roboto', sans-serif;
}
.form-box {
    float: left;
    width: 100%;
    margin-top: -90px;
}
.form-box form {
    float: left;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
}

.form-box form .form-control {
    border: 1px dashed #034694;
    color: #034694;
    height: 40px;
}
.form-box form .form-control::placeholder {
  color: #034694;
}

.form-box form .form-control:-ms-input-placeholder {
  color: #034694;
}

.form-box form .form-control::-ms-input-placeholder {
  color: #034694;
}
.form-box form input[type="radio"]{
	position: relative;
	top: 1px;
}
.form-box form input[type="radio"]:checked + label{
   color: #3490DC; 
}
.radio-box {
    float: left;
    width: 100%;
    height: 35px;
}
.form-box form h5 {
    font-size: 16px;
    color: #034694;
    margin: 0 0 4px;
}
.radio-box label{
	margin-right: 15px;
}
.form-box form h5{
	margin-top: 0;
}
.form-box form h6 {
    font-size: 14px;
    color: #000;
    font-weight: bold;
}
.form-box form button{
	float: right;
	    background: #034694;
    border-radius: 3px;
    color: #fff;
    padding: 8px 30px;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    text-transform: uppercase;
    transition: 0.25s all ease-in-out;
    -webkit-transition: 0.25s all ease-in-out;
    font-family: 'Roboto', sans-serif;
    border: none;
}