:root { font-family: Arial, Helvetica, sans-serif; color: #212121; background: #0d47a1; }
* { box-sizing: border-box; }
html, body { width: 100%; min-height: 100%; margin: 0; }
body { min-height: 100vh; }
button, input { font: inherit; }
.authentication-root { min-height: 100vh; padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom)); background: linear-gradient(#0d47a1, #1565c0); display: flex; }
.authentication-content { width: 100%; margin: 12vh auto auto; display: flex; flex-direction: column; align-items: center; }
.authentication-page__logo { height: 42px; margin-bottom: 38px; text-align: center; }
.authentication-page__logo img { display: block; width: 170px; height: 42px; }
.authentication-page-container, .success-card { width: 410px; max-width: 100%; padding: 24px 32px; background: #fff; box-shadow: 0 10px 13px rgba(0,0,0,.13); }
.authentication-page-header { font-size: 24px; font-weight: 400; line-height: 36px; }
.authentication-page-content { margin-top: 8px; padding-top: 16px; border-top: 1px solid #e0e0e0; }
.intro { margin: 0 0 20px; color: #616161; font-size: 14px; line-height: 20px; }
.authentication-page-form-field { display: block; }
.authentication-page-form-field + .authentication-page-form-field { margin-top: 16px; }
.field-label { display: block; margin-bottom: 4px; color: #212121; font-size: 14px; line-height: 20px; }
.ui-input { display: flex; width: 100%; max-height: 48px; color: #757575; background: #fff; transition: box-shadow .3s ease-in; box-shadow: inset 0 1px #bdbdbd, inset 0 0 0 1px #e0e0e0, inset 0 2px #f5f5f5, 0 0 transparent; }
.ui-input:focus-within { box-shadow: inset 0 1px #f5f5f5, inset 0 0 transparent, inset 0 0 transparent, 0 0 0 2px #1e88e5; }
.ui-input.is-error { box-shadow: inset 0 1px #f5f5f5, inset 0 0 transparent, inset 0 0 transparent, 0 0 0 2px #d32f2f; }
.ui-input-field { width: 100%; height: 48px; padding: 0 22px; border: 0; outline: 0; color: #000; background: transparent; font-size: 16px; line-height: 48px; }
.password-wrap .ui-input-field { padding-right: 8px; }
.password-toggle { padding: 0 14px 0 6px; border: 0; color: #1e88e5; background: transparent; cursor: pointer; font-size: 12px; }
.form-error { margin: 12px 0 0; color: #d32f2f; font-size: 14px; line-height: 20px; }
.ui-btn { width: 100%; min-height: 48px; margin: 20px 0 0; padding: 12px 22px; border: 0; border-radius: 3px; outline: none; cursor: pointer; user-select: none; font-size: 16px; line-height: 24px; transition: background .3s, box-shadow .3s ease-in, opacity .2s; }
.ui-btn--primary { color: #fff; background: #1e88e5; box-shadow: inset 0 -1px #0d47a1, inset 0 0 0 1px #1565c0; }
.ui-btn--primary:hover { background: #1976d2; }
.ui-btn--primary:active { background: #1565c0; }
.ui-btn:focus-visible { outline: 2px solid #90caf9; outline-offset: 2px; }
.ui-btn:disabled { cursor: wait; opacity: .72; }
.loader { display: none; width: 16px; height: 16px; margin: 4px auto; border: 2px solid currentColor; border-top-color: transparent; border-left-color: transparent; border-radius: 50%; animation: spin .9s linear infinite; }
.is-loading .button-label { display: none; }
.is-loading .loader { display: block; }
.authentication-page-footer { margin-top: 16px; padding-top: 16px; border-top: 1px solid #e0e0e0; color: #9e9e9e; font-size: 12px; line-height: 18px; }
.success-card { text-align: center; }
.success-icon { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 18px; border: 2px solid #66bb6a; border-radius: 50%; color: #2e7d32; background: #e8f5e9; font-size: 38px; }
.success-card h1 { margin: 0; font-size: 24px; font-weight: 400; line-height: 34px; }
.success-card p { margin: 10px 0 0; color: #616161; font-size: 14px; line-height: 20px; }
[hidden] { display: none !important; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 520px) {
  .authentication-root { padding-left: 14px; padding-right: 14px; }
  .authentication-content { margin: auto; }
  .authentication-page__logo { margin-bottom: 24px; }
  .authentication-page-container, .success-card { padding: 22px 20px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
