* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: #40c297;
  padding: 40px 0;
  color: #555;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.block {
  background: #fff;
  width: 550px;
  margin: 0 auto;
  border-radius: 40px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.bl_ttl {
  text-align: center;
  margin: 0;
  padding: 30px 0;
  background: #f6f7fa;
  color: #555;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

.bl_body {
  padding: 30px 50px;
}

.el_button, input[type="submit"] {
  background: #40c297;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: block;
  width: 100%;
  padding: 32px;
  border: none;
  cursor: pointer;
  border-radius: 32px;
  outline: none;
  height: 0;
  letter-spacing: .1rem;
  line-height: 0rem;
  -webkit-transition: .2s;
  transition: .2s;
}

.el_button:hover, input[type="submit"]:hover {
  background-color: #14e6a0;
  border-color: #14e6a0;
  color: #fff;
  outline: 0;
}

.el_button_outline {
  background: #fff;
  color: #40c297;
  border: 1px solid #40c297;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  padding: 0 10px;
  min-width: 8em;
  cursor: pointer;
  outline: none;
  -webkit-transition: .2s;
  transition: .2s;
}

.el_button_outline:hover {
  background-color: #40c297;
  border: 1px solid #40c297;
  color: #fff;
}

.bl_form {
  width: 100%;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

label {
  display: block;
  font-size: 14px;
  margin: 0 0 10px;
}

input[type="text"],
input[type="email"] {
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 10px;
  outline: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

input::-webkit-input-placeholder {
  color: #ccc;
}

input:-ms-input-placeholder {
  color: #ccc;
}

input::-ms-input-placeholder {
  color: #ccc;
}

input::placeholder {
  color: #ccc;
}

input:focus {
  border-color: #40c297;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

select {
  border: 1px solid #eee;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 10px;
  height: 38px;
}

.bl_formGroup {
  margin: 0 0 30px;
}

.el_form_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2px;
}

.el_form_row button {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin-left: 10px;
}

.el_badge {
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  background: #f36565;
  color: #fdfdfd;
  padding: 4px 8px;
  border-radius: 2px;
  margin-left: .5em;
  position: relative;
  top: -1px;
}

.errors {
  color: red;
  margin: 10px 0 0;
  font-size: 12px;
}
/*# sourceMappingURL=style_formVaridation.css.map */