:root {
  --Primary: #d71009;
  --Secondary: #535f69;
  --Outline: #bfcbd7;
  --White: #fff;
  --Black: #0f1112;
}

body {
  background: var(--White);
  font-family: "Albert Sans", Arial, Helvetica, sans-serif;
  margin: 0;
}

a {
  color: var(--Secondary);
}

p {
  font-size: 18px;
  margin: 0;
}

.Form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.Form__label {
  font-size: 18px;
  font-weight: bold;
}

.Form__input {
  background: var(--White);
  border: 1px solid var(--Outline);
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  font-size: 18px;
  padding: 16px;
  width: 100%;
}

.Button {
  align-items: center;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 16px 32px;
  text-decoration: none;
  width: 100%;
}

.Button svg {
  height: 18px;
  width: 18px;
}

.Button--primary {
  background: var(--Primary);
  color: var(--White);
}

.Button--secondary {
  background: var(--White);
  border: 2px solid var(--Primary);
  color: var(--Primary);
}

.Button--tertiary {
  background: var(--White);
  border: 2px solid var(--Secondary);
  color: var(--Secondary);
}

.Button--width-auto {
  width: auto;
}

.Button--compact {
  padding: 8px;
}

.IdentityLogin,
.IdentityPinLogin,
.IdentityAuthorization,
.IdentityChangeCredentials,
.IdentityResetCredentials,
.IdentityExpiredCredentials {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  margin: 0 auto;
  max-width: 416px;
}

.IdentityLogin__title,
.IdentityPinLogin__title,
.IdentityAuthorization__title,
.IdentityChangeCredentials__title,
.IdentityResetCredentials__title,
.IdentityExpiredCredentials__title {
  font-size: 40px;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

/* stylelint-disable */
.ValidationSummary.validation-summary-valid {
  display: none;
}

/* stylelint-enable */
.LineBreak {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.LineBreak::after {
  background: var(--Outline);
  content: "";
  flex: 1;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.LineBreak__text {
  background: var(--White);
  font-size: 18px;
  padding: 0 25px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.Dialog[open] {
  border: 1px solid var(--Secondary);
  border-radius: 8px;
  padding: 0;
  width: 560px;
}

.Dialog[open] .Dialog__form {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
  text-align: center;
}

.Dialog::backdrop {
  background: var(--Secondary);
  opacity: 0.75;
}

.Dialog__title {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.Dialog__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.Dialog__actions .Button:only-child {
  width: 100%;
}

.u-container {
  margin: 0 auto;
  max-width: 1376px;
  padding-inline: 32px;
}

.u-text-align-center {
  text-align: center;
}

.u-text-align-right {
  text-align: right;
}

.u-unstyled-button {
  background: none;
  border: none;
  color: var(--Secondary);
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  text-align: left;
  text-decoration: underline;
}

.IdentityApp {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.IdentityApp__header {
  padding: 42px 0;
}

.IdentityApp__header .u-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.IdentityApp__brand {
  align-items: center;
  display: flex;
  gap: 16px;
}

.IdentityApp__divider {
  background-color: var(--Outline);
  display: inline-block;
  height: 32px;
  width: 1px;
}

.IdentityApp__strapline {
  color: var(--Black);
  font-size: 18px;
  line-height: 18px;
  margin: 0;
}
.IdentityApp__strapline strong {
  display: block;
  font-weight: 700;
}

.IdentityApp__main {
  align-items: center;
  display: flex;
  flex: 1;
  flex-grow: 1;
  justify-content: center;
}