textarea, input, button, select {
	outline: none;
}

input[type=text], input[type=password], input[type=submit], textarea, button, select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	font: 1.1em/1.45 -apple-system, Helvetica Neue, Arial, Verdana, sans-serif;
	width: 100%;
	padding: .7em .7em;
	margin: 8px 0;
	display: inline-block;
	border: 3px solid #e7ebef;
	border-radius: 10px;
	font-weight: 500;
	box-sizing: border-box;
	transition: .15s all;
	color: #63727b;
}

select {
	color: #99a6af;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus, select:focus {
	border-color: #68cdf8;
}
input[type=text].error, input[type=password].error, input[type=radio].error, textarea.error, select.error {
	border-color: #fc4e4e;
}

input[type=submit], button {
	display: inline-block;
    width:auto;
    color: #fff;
    font-weight: 600;
    background:#F26BAE;
    border:0 none;
    border-radius: 25px;
	padding: 7px 15px;
	font-weight: 600;
	font-size: 1.1em;
    cursor:pointer;
    margin-top:30px;
    transition: all .15s;
}

::-webkit-input-placeholder {
  color: #99a6af;
}

:-ms-input-placeholder {
  color: #99a6af;
}

::placeholder {
  color: #99a6af;
}

input[type=submit]:hover {
	opacity: .85;
}

input[type=submit].delete {
	background-color: #fc4e4e;
	transition: .15s all;
	margin-left: 20px;
}

input[type=submit].delete:hover {
	opacity: .85;
}

.method input[type="radio"], .method input[type="checkbox"] {
  display: none;
}
.method {
  margin: 15px 0 15px 52px;
}
.method label {
  position: relative;
  font: 1.1em/1.45 -apple-system, Helvetica Neue, Arial, Verdana, sans-serif;
  font-weight: 500;
}

.method span::before,
.method span::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.method span.radio:hover {
  cursor: pointer;
}
.method span.radio::before {
  left: -52px;
  width: 45px;
  height: 25px;
  background-color: #e7ebef;
  border-radius: 50px;
}
.method span.radio::after {
  left: -49px;
  width: 17px;
  height: 17px;
  border-radius: 10px;
  background-color: #9aa4b3;
  transition: left .25s, background-color .25s;
}
input[type="radio"]:checked + label span.radio::after, input[type="checkbox"]:checked + label span.radio::after {
  left: -27px;
  background-color: #66CC52;
}

.method span.error {
	color: #fc4e4e;
}