h1 {
  letter-spacing: 0.5px;
  line-height: 100%;
}
.login-container {
  display: flex;
  min-height: 100dvh;
  background: var(--black);
}
.panel {
  width: 100%;
  padding: 64px var(--side-padding);
}
.login-panel {
  gap: 32px;
  z-index: 5;
  align-items: center;
  border: 1px solid #1f1f1f;
  background: rgba(255, 255, 255, 0.04);
}
.login-panel > * {
  width: 100%;
}
.register-note,
.footnote {
  text-align: center;
}
.login-spacer {
  max-width: calc(var(--side-padding) * 2);
}
.login-spacer-small {
  max-width: var(--side-padding);
}
.auth-hero {
  position: relative;
  overflow: hidden;
}
.auth-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(/assets/images/band-stage-img.jpg) center / cover no-repeat;
  animation: promo-zoom 22s var(--ease-smooth) infinite alternate;
}
.auth-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(7, 7, 5, 0.92) 0%,
      rgba(7, 7, 5, 0.65) 38%,
      rgba(7, 7, 5, 0.4) 70%,
      rgba(7, 7, 5, 0.25) 100%);
}
.auth-hero > * {
  position: relative;
  z-index: 2;
}
.auth-hero .login-panel {
  background: rgba(7, 7, 5, 0.66);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--mr);
}
.auth-hero .testimonial {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 24px;
}
.logo {
  width: 200px;
  height: auto;
}
.quote {
  font-size: var(--xl);
  font-style: italic;
  line-height: 1.4;
  max-width: 480px;
}
.quote strong {
  color: var(--primary);
}
.quote-author {
  display: flex;
  gap: 8px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background-color: #444;
  background-size: cover;
  background-position: center;
}
.author-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author-name {
  font-weight: 600;
  font-size: var(--s);
}
.author-role {
  font-size: var(--xs);
  color: var(--grey);
}
.socials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.social-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #2b2b2b;
  border-radius: var(--sr);
  background-color: #161616;
  color: var(--white);
  text-decoration: none;
  font-size: var(--s);
  padding: 12px 0;
  transition: background-color 0.15s ease;
}
.social-button:hover {
  background-color: #1f1f1f;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: var(--xs);
  color: var(--dark-grey);
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #2b2b2b;
}
input.register-input,
textarea.register-input {
  font-family: var(--tertiary-font);
}
.form-inputs {
  gap: 24px;
  display: flex;
  flex-direction: column;
}
label {
  font-size: var(--s);
}
.forgot-password {
  font-size: var(--xs);
  color: var(--primary);
  text-decoration: none;
}
.submit-button {
  background-color: var(--primary);
  border: none;
  border-radius: var(--sr);
  padding: 16px 12px;
  color: var(--black);
  font-weight: 700;
  font-size: var(--m);
  cursor: pointer;
}
.footnote {
  font-size: var(--s);
  color: var(--grey);
  line-height: 1.4;
}
.footnote a {
  color: var(--primary);
  text-decoration: none;
}
.login-message {
  font-family: var(--secondary-font);
  font-size: var(--m);
  line-height: 1.4;
  font-weight: 500;
}
.login-message.error {
  color: var(--red);
}
.select-block {
  cursor: pointer;
  padding: 16px;
  border: 2px solid var(--primary);
  border-radius: var(--sr);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}
.select-block strong,
.select-block span {
  text-align: center;
}
.select-block.is-checked {
  background-color: var(--primary);
  color: black;
  transform: scale(1.04);
}
.select-block:not(.is-checked):hover {
  background-color: rgba(255, 193, 7, 0.1);
}
.radio-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.radio-indicator svg {
  display: none;
}
input[type=radio]:checked + .radio-indicator {
  background-color: white;
  border-color: white;
}
input[type=radio]:checked + .radio-indicator svg {
  display: block;
  color: black;
}
.input input.invalid {
  border-color: var(--red);
  outline-color: var(--red);
}
.input label.invalid {
  color: var(--red);
}
.select-block.invalid {
  border-color: var(--red);
}
.code-input {
  text-align: center;
  letter-spacing: 8px;
  font-size: var(--l);
  font-weight: 700;
}
.code-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.code-boxes .code-box {
  flex: 1 1 0;
  min-width: 0;
  max-width: 48px;
  height: 56px;
  padding: 0;
  text-align: center;
  font-size: var(--xl);
  font-weight: 700;
  border-radius: var(--sr);
}
.code-box-dash {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--xl);
  padding: 0 4px;
}
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
  }
  .testimonial-panel,
  .login-spacer {
    display: none;
  }
  .panel {
    max-width: none;
    width: 100%;
    padding: 32px;
    border-radius: var(--mr);
  }
}
