@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");

body,
div,
form,
input,
h2,
p,
ul,
li {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  background-color: #eeeeee;
  color: rgba(0, 0, 0, 0.54);
  font-size: 12px;
  line-height: 20px;
  height: 100%;
}

body * {
  font-family: "Roboto", sans-serif;
}

ol,
ul {
  list-style: none;
  padding-bottom: 5px;
}

a {
  color: #00a527;
  text-decoration: none;
}

a.outline {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 19px;
  color: #02b42c;
  border: 1px solid #02b42c;
  border-radius: 2px;
  padding: 8px 18px;
}

.mt-4 {
  margin-top: 32px;
}

a:hover {
  text-decoration: underline;
}

.fit {
  min-height: 100vh;
  width: 100%;
  height: 100%;
}

.col {
  flex: 10000 1 0%;
}

.row,
.column {
  display: flex;
}

.column {
  flex-direction: column;
}

.no-wrap {
  flex-wrap: nowrap;
}

.justify-start {
  justify-content: flex-start;
  justify-content: space-between;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.container {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.h100 {
  min-height: 100vh;
  height: 100%;
}

.logo {
  background-image: url(/public/resources/images/logo.png);
  background-position: center;
  background-size: cover;
  width: 177px;
  height: 46px;
  margin-bottom: 67px;
  margin-top: 24px;
}

.content {
  background: #ffffff;
  width: calc(100% - 16px);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.12);
  border-radius: 3px;
}

.footer {
  margin-top: 64px;
  text-align: center;
  margin-bottom: 60px;
}

.toolbar {
  border-radius: 3px 3px 0 0;
  background-color: #003763;
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  height: 66px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 16px;
}

.toolbar-icon {
  margin-right: 16px;
}

.toolbar h2 {
  font-size: 20px;
  font-weight: 500;
}

.main {
  background: #ffffff;
  border-radius: 0 0 3px 3px;
  padding: 60px;
}

.reset-title {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
  text-align: center;
  max-width: 270px;
  margin: 0 auto 24px auto;
}

.reset-done-title {
  max-width: 300px;
  margin: 0 auto;
}

.reset-done-title p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.87);
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  background: #02b42c;
  outline: 0;
  border: 0;
  vertical-align: middle;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  width: auto;
  height: auto;
  border-radius: 3px;
  padding: 8px 16px;
  cursor: pointer;
  min-width: 105px;
}

.form-control {
  margin-bottom: 36px;
}

.form-control.form-control-hint{
  margin-bottom: 20px;
}

.form-label {
  color: rgba(0, 0, 0, 0.54);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}

.focused .form-label {
  color: #003763;
}

.form-control.control-error .form-label,
.form-control.control-error .form-hint{
  color: #ff5722;
}

.form-control .form-hint {
  margin-top: 5px;
  line-height: 14px;
  height: 14px;
}

.form-input input {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 8px;
  width: 100%;
  min-width: 0;
  outline: 0 !important;
}

.form-input {
  position: relative;
}

.form-input:after,
.form-input:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.form-input:before {
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  transition: border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:hover:before {
  border-color: #000;
}

.control-error .form-input:before,
.control-error .form-input:hover:before {
  border-bottom-color: #ff5722;
}

.form-input:after {
  height: 2px;
  top: auto;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  transform-origin: center bottom;
  transform: scale3d(0, 1, 1);
  background: #003763;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.control-error .form-input:after{
  background: #ff5722;
}

.focused .form-input:after {
  transform: scale3d(1, 1, 1);
}

.form-input input:focus {
  border-color: #000;
}

.password-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url(/public/resources/images/password-hide.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

.password-icon.hide-pass {
  background-image: url(/public/resources/images/password-show.svg);
}

.login-icon {
  width: 24px;
  height: 24px;
  background-image: url(/public/resources/images/login.svg);
  background-repeat: no-repeat;
}

.reset-password-icon {
  width: 24px;
  height: 24px;
  background-image: url(/public/resources/images/password.svg);
  background-repeat: no-repeat;
}

.error-message {
  background-color: #fdeded;
  color: #5f2120;
  padding: 8px 16px;
  margin-bottom: 36px;
}

@media only screen and (max-width: 652px) {
  .container {
    padding: 0;
  }
  .main {
    padding: 32px;
  }
}