/* ════════════════════════════════════════
   AUTH PAGES (login)
════════════════════════════════════════ */

.auth-card-subtitle {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 3px;
}

.btn-full {
  width: 100%;
  margin-top: 6px;
}
.auth-wrapper {
  min-height: calc(100vh - 65px);
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../images/LoginImage.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-card {
  background: #fff;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 460px;
  padding: 44px;
}

.auth-card-header {
  background: var(--primary);
  color: #fff;
  padding: 18px 26px;
  margin: -44px -44px 32px;
}

.auth-card-header h2 {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.auth-link {
  text-align: center;
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.auth-link a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* ════════════════════════════════════════
   REGISTER PAGE
════════════════════════════════════════ */
.register-wrapper {
  min-height: calc(100vh - 65px);
  background: var(--bg-light);
  display: flex;
  align-items: stretch;
}

.register-sidebar {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.register-sidebar-header {
  background: var(--primary);
  padding: 28px 24px;
}
.register-sidebar-header h2 {
  font-family: "Anton", sans-serif;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.register-stadium-img {
  flex: 1;
  min-height: 180px;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a0000 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.register-stadium-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/RegisterImage.png") center/cover no-repeat;
  opacity: 0.5;
}

.register-stadium-caption {
  position: relative;
  z-index: 1;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-style: italic;
}

.register-security-box {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 18px 22px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 7px;
}

.security-badge::before {
  content: "✓";
  width: 16px;
  height: 16px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
  border-radius: 2px;
}

.register-security-box p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.register-form-wrap {
  flex: 1;
  padding: 40px 48px;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .auth-card {
    padding: 32px 24px;
  }
  .auth-card-header {
    margin: -32px -24px 24px;
    padding: 16px 20px;
  }
  .register-wrapper {
    flex-direction: column;
  }
  .register-sidebar {
    width: 100%;
  }
  .register-stadium-img {
    display: none;
  }
  .register-form-wrap {
    padding: 28px 20px;
  }
}
