
h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  display:inline-block;
  margin: 20px 8px 10px 8px; 
  color: #111;
}

::placeholder {
    color: #111;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #111;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #111;
}
/* STRUCTURE */
.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.formContent {
    border: solid 2px #5fbae9;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: rgba(222, 222, 222, 0.85);
    /* opacity:0.5;*/
    padding: 30px;
    width: 90%;
    max-width: 300px;
    position: relative;
    top: 45px;
    padding: 0px;
    -webkit-box-shadow: 0 30px 40px 0 rgba(84, 229, 255,0.4);
    box-shadow: 10px 30px 40px 10px rgba(45, 191, 255, 0.30);
    text-align: center;
    height: 613px;
}

.formFooter {
  /*background-color: rgba(10, 38, 62, 0.50);*/
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

h2.inactive {
    cursor:pointer;
}

h2.active {
    color: #fe7108;
    border-bottom: 2px solid #5fbae9;
}

 .fieldg {
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin-bottom: 20px;
    padding: 2px 10px 2px 0;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}
/* FORM TYPOGRAPHY*/
input[type=button], input[type=submit] {
    background-color: #fe7108;
    border: none;
    color: white;
    padding: 14px 106px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 20px;
    margin: 30px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.lrow {
    position: relative;
    width:238px;
    margin:10px auto;
    border:solid 2px #fff;
}

    .lrow i {
        position: absolute;
        left: 15px;
        top: 12px;
        font-size: 13pt;
        z-index: 2;
        color: #666;
    }

    .lrow input {
        padding-left: 30px
    }

input[type=text], input[type=password] {
    border: none;
    color: #111;
    padding: 9px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    width: 100%;
    background: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

input[type=text]:placeholder {
  color: #ccc;
}

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.second {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.fadeIn.third {
  -webkit-animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #5fbae9;
}

.underlineHover:hover:after{
  width: 100%;
}

*:focus {
    outline: none;
} 

#icon {
  width:60%;
}

* {
  box-sizing: border-box;
}

* {
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

input[type="checkbox"] {
    display: none;
}

#button {
    position: relative;
    display: block;
    width: 235px;
    height: 44px;
    background-color: #fe7108;
    border-radius: 60px;
    cursor: pointer;
    margin: 22px auto;
}

#knob {
    width: 112px;
    height: 36px;
    background-color: #013f84;
    opacity: 0.5;
    position: relative;
    top: 4px;
    left: 5px;
    border-radius: 16px;
    transition: 0.4s ease left, 0.4s ease background-position;
    z-index: 2;
}

#project,
#other {
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-left: 145px;
    z-index: 1;
}

#project {
    margin-left: 30px;
}

#chkType:checked + #button #knob {
    left: 118px;
    background-position: -140px 0;
}