.form {
  display: flex;
  flex-direction: column;
}

.form--login {
  margin: 60px auto 0;
  padding: 20px 40px;
  width: 350px;
  background-color: #5484c4;
}

.form__label {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  color: #fff;
}

/* .form__editor {
} */

.form__editor > input[type="text"] {
  width: 100%;
  border: 0;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.form__editor > input[type="text"]:focus {
  outline: none !important;
  box-shadow: 0px 0px 0px 1px #a9c441;
}

.form__editor > input[type="password"] {
  width: 100%;
  border: 0;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.form__editor > input[type="password"]:focus {
  outline: none !important;
  box-shadow: 0px 0px 0px 1px #a9c441;
}

.form__editor > input[type="submit"] {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 20px;
  /* border-radius: 2px; */
  border: 0;
  background-color: #fff; /* #a9c441; */
  color: #222;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  text-decoration: none;
}

.form__editor > input[type="submit"]:hover {
  background-color: #a9c441;
  color: #fff;
}

/* .form__editor--default > input {
} */

.form__message {
  font-size: 12px;
  font-weight: 300;
  padding-left: 4px;
  /* line-height: 11.4; */
}

.form__message--invalid {
  background-color: #c43d2d !important;
  color: #fff;
}
