.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem;
  /* we need this padding since the footer will hide content at the bottom of the container */
  padding-bottom: 5.5rem;
}

html, body {
  text-rendering: geometricPrecision;
}

body {
  min-height: 100vh;
  background: #EEEEEE;
  display: flex;
  flex-direction: column;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
}

.typography-h2 {
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
}
main {
  flex: 1;
}

.app-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 70px;
}

.auth.app-container {
  max-width: 335px;
  padding-top: 70px;
}

.welcome.app-container {
  max-width: 980px;
  padding-top: 70px;
  padding-left: 12px;
  padding-right: 12px;
}

.card {
  border: 1px solid #E0E0E0;
  background:#F5F5F5;
  margin-bottom: 18px;
  padding: 20px;
}

.card-title {
  text-align: center;
  color: var(--primary60);
}

.card-action {
  text-align: center;
}

.card-action a {
  font-size: 15px;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: block;
}

.text-input {
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  color: #4A4B57;
  width: 100%;
  padding: 5px 12px;
  margin-top: 7px;
  margin-bottom: 14px;
  border: 1px solid #B4B4BB;
  border-radius: 4px;
  background-color: transparent;
  overflow: visible;
  outline: none;
}

.messages .message {
  color: var(--grey70);
  font-size: 12px;
  text-align: left;
  border-radius: 0;
}

.messages.standalone .message {
  margin-bottom: 0;
}

.required-indicator {
  color: var(--primary60);
}

.checkbox {
  margin-bottom: 8px;
}

.checkbox-inner {
  margin-bottom: 6px;
}

.code-box {
  overflow-y: auto;
  max-height: 640px;
  overflow-wrap: break-word;
}

.code-body code {
  overflow-wrap: break-word;
}

.input-button .button {
  line-height: 20px;
  color: #F9F9FA;
  border-radius: 4px;
  width: 100%;
  padding: 5px 12px;
  margin: 7px 0;
  border: 2px solid transparent;
  outline: none;
  background-color: #0277BD;
  cursor: pointer;
}

.input-button a.button {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  color: white;
  border-radius: 4px;
  padding: 4px 10px;
  margin: 5px;
  background-color: #0277BD;

}

.input-button a.button[aria-disabled="true"],
.input-button a.button[aria-disabled="true"]:hover {
  color: #B4B4BB;
  background-color: #E1E1E3;
}

.recovery-code {
  margin-bottom: .5rem;
}

form img {
  margin: 0 auto;
  display: block;
}

.typography-link {
  text-rendering: geometricPrecision;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
  color: #0277BD;
}

.typography-h3 {
  text-rendering: geometricPrecision;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
}


.required-indicator {
  color: orangered;
}


button .fa-microsoft {
  width: 10px;
  height: 26px;
  background-image: url(ms_logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

button .fa-microsoft:before {
  content: none;
}
.login-penfield img {
  max-height: 3em;
  margin-bottom: 2em;
}
.login-penfield h2 {
  display: none;
}

.login-penfield >div {
  gap: 0;
}

.login-penfield hr:first-of-type {
  display: none;
}

.login-penfield button[value="password"] {
  background: #004d71;
}

/* laptop viewport */
@media screen and (min-width: 63em) {
  button .fa-microsoft {
    height: 34px;
  }
}
