*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  font-family: 'roboto', 'Helvetica Neue';
  font-size: 15px;
  color: #a3a3a3;
  background-color: #e3e3e3;
}
h4 {color:#115385; margin-bottom:10px;}
.employeeform {padding:0; margin:0;}
.form-main {
  max-width: 38em;
  padding: 1em 3em 2em 3em;
  margin: 0em auto;
/*  background-color: #fff;
  border-radius: 4.2px;
  box-shadow: 0px -1px 10px -2px rgba(0, 0, 0, 0.2);*/
}

.employeeform input,
input[type="radio"] + label,
input[type="checkbox"] + label:before,
select option,textarea,
select {
  width: 100%;
  padding: 1em;
  line-height: 1.4;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.employeeform input:focus {
  outline: 0;
  border-color: #115385;
}
.employeeform input:focus + .input-icon i {
  color:#115385;
}
.employeeform input:focus + .input-icon:after {
  border-right-color:#115385;
}
.employeeform input[type="radio"] {
  display: none;
}
.employeeform input[type="radio"] + label{
  display: inline-block;
  width: 50%;
  text-align:left;
  float: left;
  border-radius: 0;
  padding: 10px;
}
.employeeform select {
  display: inline-block;
  width: 100%;
  text-align:left;
  float: left;
  border-radius: 0;
}
.employeeform .pad-left {padding-left: 4.4em;}
.employeeform input[type="radio"] + label:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.employeeform input[type="radio"] + label:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.employeeform input[type="radio"] + label i {
  padding-right: 0.4em;
}
.employeeform input[type="radio"]:checked + label,
input:checked + label:before,
select:focus,
select:active {
  background-color: #115385;
  color: #fff;
  border-color: #145e95;
}
.employeeform input[type="checkbox"] {
  display: none;
}
.employeeform input[type="checkbox"] + label {
  position: relative;
  display: block;
  padding-left: 1.6em;
}
.employeeform input[type="checkbox"] + label:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  padding: 0;
  content: "";
}
.employeeform input[type="checkbox"] + label:after {
  position: absolute;
  top: 0.45em;
  left: 0.2em;
  font-size: 0.8em;
  color: #fff;
  opacity: 0;
  font-family: FontAwesome;
  content: "\f00c";
}
.employeeform input:checked + label:after {
  opacity: 1;
}
.employeeform select {
  height: 3.4em;
  line-height: 2;
}
.employeeform select:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.employeeform select:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.employeeform select:focus,
select:active {
  outline: 0;
}
.employeeform select option {
  background-color:#fff;
  color: #000;
  padding:2px 0px;
}
.employeeform .input-group {
  margin-bottom: 1em;
  zoom: 1;
}
.employeeform .input-group:before,
.input-group:after {
  content: "";
  display: table;
}
.employeeform .input-group:after {
  clear: both;
}
.employeeform .input-group-icon {
  position: relative;
}
.employeeform .input-group-icon input {
  padding-left: 4.4em;
}
.employeeform .input-group-icon .input-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.4em;
  height: 3.4em;
  line-height: 3.4em;
  text-align: center;
  pointer-events: none;
}
.employeeform .input-group-icon .input-icon:after {
  position: absolute;
  top: 0.6em;
  bottom: 0.6em;
  left: 3.4em;
  display: block;
  border-right: 1px solid #e5e5e5;
  content: "";
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.employeeform .input-group-icon .input-icon i {
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.employeeform .btn, .btn-large {
    text-decoration: none;
    color: #fff;
	padding:0 20px;
    background-color: #26a69a;
    text-align: center;
    letter-spacing: .5px;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
    cursor: pointer;
}
.employeeform .file-field span {
    cursor: pointer;
}
.employeeform .file-field {
    position: relative;
}
.employeeform .file-field .btn, .file-field .btn-large {
    float: left;
    height: 3rem;
    line-height: 3rem;
}
.employeeform .file-field input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}
.employeeform .file-field .file-path-wrapper {
    overflow: hidden;
    padding-left: 5px;
}
.employeeform .input-field {
    position: relative;
    margin-top: 1rem;
	margin-bottom: 1rem;
}
.file-field span {
    cursor: pointer;
}
.employeeform input[type=text].valid:not(.browser-default){
    border-bottom: 1px solid #4CAF50;
    -webkit-box-shadow: 0 1px 0 0 #4CAF50;
    box-shadow: 0 1px 0 0 #4CAF50;
}
.employeeform .file-field input.file-path {
    width: 100%;
}
.employeeform .submitbt {
	width:200px;
	padding:15px 10px;
background-color: #115385;
color: #fff;
font-size: 15px;
text-align: center;
font-weight: bold;
font-family: 'roboto', sans-serif;
margin:0 auto;
cursor:pointer;
border:none;
}
.employeeform .error{font-size:12px; color:#f00; margin-bottom:10px;}

.employeeform .row {zoom:1;}
.employeeform .row:before,
.row:after {
  content: "";
  display: table;
}
.employeeform .row:after {clear:both;}
.employeeform .col-half {
  padding-right: 10px;
  float: left;
  width: 50%;
}
.employeeform .col-half:last-of-type {
  padding-right: 0;
}
.employeeform .col-third {
  padding-right: 10px;
  float: left;
  width: 33.33333333%;
}
.employeeform .col-third:last-of-type {
  padding-right: 0;
}
.helpText{
    clear: both;
    font-size: 11px;
    color: #999;
    padding-top: 3px;
}

@media only screen and (max-width: 540px) {
  .employeeform .col-half {
    width: 100%;
    padding-right: 0;
  }
}
