body {
  background: #FCFCFC;
}

.nav {
  background: #FFFFFF;
  box-shadow: 0px 2px 2px rgba(176, 173, 173, 0.3);
  height: 91px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.logo-container {
  flex: 1;
}

.form-col {
  min-height: calc(100vh - 91px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-container {
  width: 600px;
  min-height: 380px;
  padding: 60px 100px;
  background: #FFFFFF;
  border: 0.5px solid #B0ADAD;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  margin-top: -20px;
  margin-bottom: 0;
}

form {
  margin-top: 30px;
}

label, input {
  display: block;
}

input {
  height: 46px;
  background: #FFFFFF;
  border: 1px solid #393939;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 14px;
  padding: 14px;
  outline: 0;
}

input:focus {
  outline: 0;
}

button {
  background: #507CBD;
  border-radius: 100px;
  height: 44px;
  width: 100%;
  color: white;
  border: 0;
  outline: 0;
  font-size: 14px;
  cursor: pointer;
}

button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

a {
  color: #000;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
}

.errorlist {
  list-style-type: none;
  text-align: left;
  padding: 0;
  color: #FF0A8E;
  font-style: italic;
  font-weight: normal;
  font-size: 12px;
  line-height: 17px;
  margin: 14px 0 0;
}