.user-signup .form-body {
  max-width:1080px;
  margin:0 auto;
  background-color:#ffffff;
  padding:50px;
  border-radius:4px;
  font-size:16px;
  color: #828282;
  letter-spacing: 0.2em;
  box-shadow:1px 1px 5px rgba(0,0,0,0.1);
}
.user-signup .form-group {
  padding: 30px 0;
  border-bottom: 1px solid #e5e5e5;
  margin: 0;
}
.user-signup .form-group:last-child   {
  border: none;
}

.user-signup .bday-input-container .form-control{
  max-width: 90px;
  display: inline-block;
}

.user-signup .bday-input-container .text{
  max-width: 77px;
  display: inline-block;
  vertical-align: bottom;
}

.user-signup .control-label{
  text-align: left;
  color: #000;
  padding: 0  0 0 19px;
  margin-top:10px;

}


.user-signup .control-label::before {
  background-color: #000;
  height: 15px;
  width: 5px;
  content: " ";
  margin-right: 18px;
  display: inline-block;
}

.user-signup form .form-control {
  background:#eeeeee;
  border:2px solid #bfbfbf;
  border-radius:3px;
  box-shadow:none;
  outline:none;
  color:inherit;
  text-indent:8px;
  height: 40px;
}

.user-signup form .btn-primary {
  border:none;
  padding:11px;
  box-shadow:none;
  margin-top:50px;
  text-shadow:none;
  max-width:500px;
  max-height: 60px;
  width:100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8em;
  outline:none !important;
  margin-left: auto;
  margin-right: auto;
}

.user-signup form .btn-primary:hover, .user-signup form .btn-primary:active {
  background:#ce0402;
}

.radio {
    padding-left: 2 0px;
}
.radio label {
    display: inline-block;
    position: relative;
    padding-left: 15px;
}
.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 25px;
    height: 25px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #eeeeee;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
  }
.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 13px;
    height: 13px;
    left: 6px;
    top: 6px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  }
.radio input[type="radio"] {
    opacity: 0;
  }
.radio input[type="radio"]:focus + label::before {
    /*outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;*/
 }
.radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label {
    opacity: 0.65;
}
.radio input[type="radio"]:disabled + label::before {
    cursor: not-allowed;
}
.radio.radio-inline {
    margin-top: 0;
 }

 /* iPhone 6 and 6 Plus */
 @media only screen
   and (max-device-width: 640px),
   only screen and (max-device-width: 667px),
   only screen and (max-width: 480px){

  .user-signup .form-body {
    padding:15px;
  }

  .user-signup form .btn-primary:first-child {
    margin-top:98px;
  }
}