.login-body {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 20px;
}

.login-shell {
  width: min(420px, 100%);
}

#card {
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  opacity: 1;
}

#card-content {
  padding: 28px;
}

.login-theme {
  float: right;
  margin-bottom: 12px;
}

#card-title {
  clear: both;
  padding: 0 0 20px;
  text-align: left;
}

#card-title h2 {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
}

.underline-title {
  display: none;
}

label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-content,
.form-select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  color: var(--text);
  padding: 11px 12px;
}

.form-border {
  display: none;
}

#submit-btn {
  width: 100%;
  height: 44px;
  margin-top: 22px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--brand);
  box-shadow: none;
  font-weight: 800;
}

#submit-btn:hover {
  background: var(--brand-strong);
  box-shadow: none;
}
