form.authorization {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  padding: 44px 44px 34px 44px;
  text-align: center;
  width: 100%;
}

form.authorization .title {
  color: #00569B;
  font-size: 24px;
  font-weight: bold;
  line-height: 28.13px;
  margin-bottom: 34px;
}

form.authorization .controls {
  text-align: left;
}

form.authorization .controls .control .help {
  color: #FF0000;
  font-size: 13px;
  height: 23px;
  line-height: 23px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

form.authorization .controls .control:first-child {
  margin-top: 0;
}

form.authorization .controls .control .label {
  color: #7D7D7D;
  line-height: 24.61px;
}

form.authorization .controls .control .input {
  position: relative;
}

form.authorization .controls .control .input input,
form.authorization button[type="submit"] {
  border-radius: 5px;
}

form.authorization .controls .control .input input {
  border-color: #C4C4C4;
  border-style: solid;
  border-width: 1px;
  color: #2B2B2B;
  line-height: 44px;
  outline: none;
  padding: 0 15px 0 20px;
  width: 100%;
}

form.authorization .controls .control .input input::placeholder {
  color: #C4C4C4;
}

form.authorization .controls .control .input input:focus {
  box-shadow: 0px 0px 6px 0px #7D7D7D;
}

form.authorization .controls .control .input input:-webkit-autofill,
form.authorization .controls .control .input input:autofill,
form.authorization .controls .control .input input:valid {
  border-color: #00569B;
}

form.authorization .controls .control .input input:valid:focus {
  box-shadow: 0px 0px 6px 0px #00569B;
}

form.authorization .controls .control.error .input input {
  background-color: #FFE5E5;
  border-color: #FF0000;
}

form.authorization .controls .control.error .input input::placeholder {
  color: #FF0000;
}

form.authorization .controls .control .input button {
  background-image: url('/wp-content/themes/cseior/assets/images/icons/close-eye.svg');
  background-color: rgba(0, 0, 0, 0);
  border: none;
  height: 24px;
  outline: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
}

form.authorization .controls .control.error .input button {
  background-image: url('/wp-content/themes/cseior/assets/images/icons/close-danger-eye.svg');
}

form.authorization .controls .control .input.open button {
  background-image: url('/wp-content/themes/cseior/assets/images/icons/open-eye.svg');
}

form.authorization .controls .control.error .input.open button {
  background-image: url('/wp-content/themes/cseior/assets/images/icons/open-danger-eye.svg');
}

form.authorization button[type="submit"] {
  background-color: #00569B;
  border: none;
  color: #FFF;
  line-height: 50px;
  outline: none;
  overflow: hidden;
  margin-top: 32px;
  text-overflow: ellipsis;
  transition: background-color 0.3s ease-in-out;
  white-space: nowrap;
  width: 100%;
}

form.authorization button[type="submit"]:disabled {
  background-color: #C4C4C4;
}

form.authorization .helper,
form.authorization .helper label {
  align-items: center;
  display: flex;
}

form.authorization .helper label input {
  border-color: #7D7D7D;
  border-radius: 5px;
  height: 20px;
  margin-right: 6px;
  width: 20px;
}

form.authorization .helper {
  color: #7D7D7D;
  justify-content: flex-end;
  margin-top: 22px;
}

form.authorization .helper a {
  color: inherit;
  text-decoration: none;
}

form.authorization .helper a:hover {
  color: #00569B;
}