body {
  margin: 0;
  padding: 60px;
  background-color: #353d41;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.0025em;
  color: #000000;
  overflow: auto;
}

* {
  box-sizing: border-box;
}

button[type='submit'] {
  background-color: #2196f3;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px rgba(0, 0, 0, 0.14), 0px 1px 5px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

button[type='submit']:hover {
  opacity: 0.9;
}

label {
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
}

a {
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  letter-spacing: 0.0025em;
  text-decoration-line: none;
  color: #2196f3;
  cursor: pointer;
  font-weight: 400;
}

.page {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.logotype {
  padding: 36px 100px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logotype > img {
  width: 138px;
  height: 101px;
}

.form {
  background: #f0f0f0;
  padding: 24px;
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.form .title {
  margin-bottom: 12px;
  text-align: center;
  font-weight: bold;
}

.form .forgot {
  display: flex;
}

.form .actions {
  margin-top: 8px;
}

.form .actions > button {
  width: 100%;
}

.termsconditions {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.termsconditions > a {
  color: #f0f0f0;
  padding-left: 2px;
  padding-right: 2px;
}

.title {
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.ssoLogin {
  padding-top: 12px;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}

.input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.error {
  color: #f44336;
}

.input-field.input-outlined {
  margin-top: 0px;
  margin-bottom: 0px;
  > input {
    border: 1px solid rgba(0, 0, 0, 0.23);
    padding: 12px 16px 14px;
    width: calc(100% - 2.5rem);
    float: none;
    display: block;
    border-radius: 4px;
    font-size: 1rem;
    height: 1.75rem;
    transition: box-shadow, border-color 0.15s;
    &:focus:not([readonly]) {
      background-color: #f0f0f0;
      border-color: #000000;
      box-shadow: 0 0px 0 0px #000000;
    }
  }
  > label {
    left: 10px;
    top: 4px;
    display: inline-flex;
    width: auto !important;
    font-size: 1rem;
    font-weight: 400;
    &.active {
      color: #9e9e9e !important;
      background: #f0f0f0;
      border-left: 4px solid #f0f0f0;
      border-right: 4px solid #f0f0f0;
      top: 0.5rem;
    }
  }
}

@media screen and (max-width: 767px) {
  body {
    padding: 30px;
  }
}
