:root {
  overflow-y: auto;
}

body,
html {
  height: 100%;
}

html {
  background: hsl(285, 42%, 26%) center no-repeat;
  background-image: radial-gradient(ellipse at center, hsl(285, 42%, 26%) 0%, hsl(285, 42%, 13%) 100%);
}

body {
  display: flex;
  flex-flow: column nowrap;
}

@supports (-webkit-touch-callout: none) {
  body {
    height: -webkit-fill-available;
  }
}

footer {
  flex: 0 0 auto;
  padding: 1rem;
  line-height: 1.5rem;
  color: hsl(285, 42%, 90%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer a,
footer small {
  white-space: nowrap;
  color: hsla(285, 42%, 90%, 0.75);
}
footer small {
  font-size: 10px;
}
footer a {
  color: hsl(285, 42%, 90%);
}
footer a:hover {
  color: hsl(50, 100%, 42%);
}
footer > * {
  margin-bottom: 0;
  line-height: normal;
}
footer svg {
  fill: white;
  height: 2rem;
  vertical-align: top;
}
footer ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

main {
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-ui {
  width: 100%;
  padding: 1rem;
  color: hsl(285, 42%, 90%);
}

@media (min-width: 320px) {
  .login-ui {
    width: auto;
    min-width: 320px;
  }
}

@media (min-width: 1200px) {
  .login-ui {
    width: auto;
    min-width: 420px;
  }
}

.login-ui .pt-minimal {
  color: #ccc;
}

#user-area,
#user-pass,
#login-area {
  display: none;
}

.login-ui input.text {
  font-size: 21px;
  line-height: 1;
  height: 30px;
  background: #fff;
  width: 100%;
  text-align: center;
}
.login-ui input.text::placeholder {
  font-size: 18px;
  color: #8788;
}
.login-ui button {
  width: 100%;
  display: block;
  margin-bottom: 0.5rem;
}
.login-ui button:last-child {
  margin-bottom: 0;
}
.show-password-btn {
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.651);
  box-shadow: none;
  height: 26px;
}

h1,
h2,
h3,
h4 {
  color: inherit;
}

h1 {
  padding: 0;
  margin: 0;
}

.login-ui label {
  display: block;
}

.login-ui label span {
  font-size: 16px;
  line-height: 30px;
}

footer,
#user-area,
#accounts-area {
  text-align: center;
}

#user-id {
  display: block;
  font-size: 28px;
  line-height: 20px;
  margin-bottom: 0;
}
#user-id em {
  font-weight: normal;
  font-size: 12px;
  opacity: 0.75;
}

#user-avatar {
  margin-bottom: 15px;
}
#user-avatar .fa {
  line-height: 48px;
  font-size: 36px;
  color: #b8dbfd;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.15);
  background-color: #4894de;
  background-image: linear-gradient(#91c0ed, #4894de);
}
#user-avatar .fa,
#user-avatar img {
  height: 52px;
  width: 52px;
  border-radius: 3px;
}

.accounts {
  margin-bottom: 0;
}

.accounts li {
  cursor: pointer;
  font-weight: bold;
  background: #eee;
  color: #333;
  text-align: left;
  padding: 0 6px;
  line-height: 2.5rem;
  border-radius: 3px;
  margin-bottom: 3px;
}
.accounts li span {
  float: right;
  display: block;
  font-weight: normal;
  color: #777;
}
.accounts li:hover {
  color: #fff;
  background-color: #0096ff;
}
.accounts li:hover span {
  color: yellow;
}

.pt-button.pt-minimal:hover {
  color: #fff;
}
