form input, form textarea {
  color: #384047;
  background-color: #e8eeef;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  border: none !important;
  border-radius: 4px;
  padding: 1em;
  margin-bottom: 1.2em;
  width: 100%
}

form input:focus, form textarea:focus {
  outline: none
}

input, textarea {
  margin-right: 60px
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], textarea {
  font-family: sans-serif !important;
  width: 100%;
  border-radius: 4px;
  margin: 8px 0;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
  transition: all 0.3s ease 0s;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="tel"]:focus, textarea:focus {
  background: #d2fff5;
  border-color: #00ace6;
  box-shadow: 0 0 3px 0 #00ace6;
}

.inputWithIcon input[type="text"], .inputWithIcon input[type="email"], .inputWithIcon input[type="password"], .inputWithIcon input[type="tel"], .inputWithIcon textarea {
  padding-left: 40px
}

.inputWithIcon {
  position: relative
}

.inputWithIcon i {
  position: absolute;
  left: 0;
  top: 11px;
  padding: 9px 8px;
  color: #aaa;
  transition: 0.3s
}

#ic-pass {
  top: 10px
}

.inputWithIcon input[type="text"]:focus + i, .inputWithIcon input[type="email"]:focus + i, .inputWithIcon input[type="password"]:focus + i, .inputWithIcon input[type="tel"]:focus + i, .inputWithIcon textarea:focus + i {
  color: #00ace6
}

.inputWithIcon.inputIconBg i {
  background-color: #aaa;
  color: #fff;
  padding: 9px 4px;
  border-radius: 4px 0 0 4px
}

.inputWithIcon.inputIconBg input[type="text"]:focus + i, .inputWithIcon.inputIconBg input[type="email"]:focus + i, .inputWithIcon.inputIconBg input[type="password"]:focus + i, .inputWithIcon.inputIconBg input[type="tel"]:focus + i, .inputWithIcon.inputIconBg textarea:focus + i {
  color: #fff;
  background-color: #00ace6
}

textarea {
  min-height: 3.5em !important;
  resize: none !important;
  overflow: hidden !important;
}

.checkbox {
  float: left;
  width: 20px;
  height: 20px;
  border-radius: 20%;
  position: relative;
  border: 1px solid #3F51B5;
  top: 0.1em;
  transition: 0.17s filter linear;
  -webkit-transition: 0.17s -webkit-filter linear;
  -moz-transition: 0.17s -moz-filter linear;
  -ms-transition: 0.17s -ms-filter linear;
  -o-transition: 0.17s -o-filter linear;
}

.checkbox:hover {
  filter: brightness(1.18);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

.checkbox:active {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  filter: brightness(1.35);
}

.checkbox label {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.checkbox label:after {
  content: "";
  width: 10px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: 4px;
  border: 3px solid #fff;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.checkbox input[type=checkbox] {
  visibility: hidden;
}

.checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}

input[type=radio] {
  display: none;
}

input[type=radio] + label {
  display: inline-block;
  width: calc(100%/3);
  margin: -2px;
  padding: 10px 12px;
  background-color: #e7e7e7;
  border-color: #ddd;
}

input[type=radio]:checked + label {
  background-image: none;
  background-color: #d0d0d0;
}


/* ////////////////////////////*/

.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}