/**
 * Framework default login *page* chrome only.
 * Form styles live in form.css (.utarus-login).
 */

:root {
  --bg: #faf9f5;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  line-height: 1.5;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

.utarus-login-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px calc(24px + env(safe-area-inset-bottom));
}

.utarus-login-page #utarus-login-root {
  width: 100%;
  max-width: 28rem;
  display: flex;
  justify-content: center;
}
