:root {
  --panel-radius: 1.25rem;
  --panel-blur: 8px;
  --panel-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

/* Full-page dynamic background image */
.page-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-shell {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: stretch;
}

.left-plain {
  background-color: rgba(5, 8, 27, 0.585);
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  flex-direction: column;
}

.version-info {
  padding: 20px 35% 20px 20px;
  backdrop-filter: blur(4px);
  margin: 0 auto;
  width: 100%;
  max-height: 160px;
  font-size: 11px;
  overflow-y: auto;
  color: #ffffffc1;
  text-shadow: 1px 1px 2px #070707;
}

.right-panel-wrap {
  background-color: rgb(0 0 0 / 80%);
  backdrop-filter: blur(4px);
  flex: 0 0 550px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 60px;
  min-height: 100vh;
}

.right-panel-wrap> :first-child {
  margin: auto 0;
}

.right-panel-wrap> :last-child {
  margin-top: auto;
}

@media (max-width: 768px) {
  .right-panel-wrap {
    flex-basis: 100%;
    padding: 20px;
  }

  .left-plain {
    display: none;
  }
}

/* Translucent panel that adapts to system theme */
/* .auth-panel {
  width: 100%;
  border-radius: var(--panel-radius);
  box-shadow: var(--panel-shadow);
  backdrop-filter: blur(var(--panel-blur));
  -webkit-backdrop-filter: blur(var(--panel-blur));
  border: 1px solid rgba(0, 0, 0, .08);
} */

.auth-panel-inner {
  padding: 28px;
}

/***** Light mode defaults *****/
/* .auth-panel {
  background: rgb(255, 255, 255);
} */

/* .auth-panel .text-muted {
  color: rgba(0, 0, 0, .55) !important;
} */

/***** Dark mode via prefers-color-scheme *****/
@media (prefers-color-scheme: dark) {
  /*   .auth-panel {
    background: rgb(18, 18, 18);
  } */

  .auth-panel,
  .auth-panel input,
  .auth-panel label,
  .auth-panel h1,
  .auth-panel .text-muted {
    color: #e8e8e8;
  }

  .auth-panel .form-control,
  .auth-panel .input-group-text {
    background-color: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    color: #f2f2f2;
  }

  .auth-panel a {
    color: #9ecbff;
  }
}

.logo-wrap {
  text-align: center;
  margin-bottom: 18px;
}

.brand-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}

.brand-divider .line {
  height: 1px;
  flex: 1;
  background: rgba(0, 0, 0, .1);
}

@media (prefers-color-scheme: dark) {
  .brand-divider .line {
    background: rgba(255, 255, 255, .12);
  }
}

.footer {
  text-align: center;
  margin-top: 16px;
  font-size: .875rem;
  opacity: .9;
}

.btn-primary {
  border-radius: .8rem;
}

.input-group.input-group-merge>.form-control:focus~[class*=input-group]>.input-group-text,
input.form-control:focus {
  border-color: #2d7ae58e !important;
}

.product-info {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.daily-quote {
  font-style: italic;
  font-size: 1.9vw;
  color: #fff;
  max-width: 85%;
  line-height: 1.5;
  text-align: center;
  padding: 20px 30px;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.8),
    0 0 8px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(0, 0, 0, 0.5);
}

.daily-quote span {
  text-align: right;
  display: block;
  font-size: 0.87rem;
  margin-top: 10px;
  font-weight: bold;
  color: #ffd700;
  text-shadow:
    1px 1px 4px rgba(0, 0, 0, 0.9),
    0 0 6px rgba(0, 0, 0, 0.6);
}