.auth-info-pro {
  background:
    radial-gradient(circle at 15% 10%, rgba(220, 38, 38, .14), transparent 34%),
    linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .18);
}

.auth-info-pro h1 {
  color: #fff;
  letter-spacing: -.04em;
}

.auth-info-pro p {
  color: rgba(255,255,255,.72);
}

.auth-info-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.auth-info-points span {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
}

.auth-card-pro {
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

.auth-card-head {
  margin-bottom: 20px;
}

.auth-card-head span {
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.auth-card-head h2 {
  margin: 6px 0;
  color: #111827;
}

.auth-card-head p {
  margin: 0;
  color: #64748b;
}

.avatar-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 18px;
}

.avatar-choice-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  cursor: pointer;
  text-align: center;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.avatar-choice-card:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(220, 38, 38, .28);
}

.avatar-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.avatar-choice-card:has(input:checked) {
  background: #fff1f2;
  border-color: rgba(220, 38, 38, .45);
  box-shadow: 0 12px 30px rgba(220, 38, 38, .12);
}

.avatar-choice-image {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #fee2e2, #ffffff);
}

.avatar-choice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-choice-image b {
  color: #991b1b;
  font-size: 22px;
}

.avatar-choice-card strong {
  overflow: hidden;
  color: #334155;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-submit-btn {
  width: 100%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ef4444, #991b1b);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(220, 38, 38, .24);
}.auth-guest-page {
  align-items: stretch;
}

.auth-info-pro {
  background:
    radial-gradient(circle at 16% 12%, rgba(220, 38, 38, .14), transparent 34%),
    linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .18);
}

.auth-info-pro h1 {
  color: #fff;
  letter-spacing: -.04em;
}

.auth-info-pro p {
  color: rgba(255, 255, 255, .72);
}

.auth-info-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.auth-info-points span {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.auth-card-pro {
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

.auth-card-head {
  margin-bottom: 20px;
}

.auth-card-head span {
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.auth-card-head h2 {
  margin: 6px 0;
  color: #111827;
}

.auth-card-head p {
  margin: 0;
  color: #64748b;
}

.gender-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 18px;
}

.gender-choice-card {
  position: relative;
  cursor: pointer;
}

.gender-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gender-choice-card span {
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #f8fafc;
  color: #334155;
  border: 1px solid rgba(15, 23, 42, .08);
  font-weight: 900;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.gender-choice-card:hover span {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(220, 38, 38, .24);
}

.gender-choice-card:has(input:checked) span {
  background: #fff1f2;
  color: #991b1b;
  border-color: rgba(220, 38, 38, .45);
  box-shadow: 0 12px 30px rgba(220, 38, 38, .10);
}

.avatar-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 18px;
}

.avatar-choice-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  cursor: pointer;
  text-align: center;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.avatar-choice-card:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(220, 38, 38, .28);
}

.avatar-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.avatar-choice-card:has(input:checked) {
  background: #fff1f2;
  border-color: rgba(220, 38, 38, .45);
  box-shadow: 0 12px 30px rgba(220, 38, 38, .12);
}

.avatar-choice-image {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #fee2e2, #ffffff);
}

.avatar-choice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-choice-image b {
  color: #991b1b;
  font-size: 13px;
  line-height: 1.1;
}

.avatar-choice-card strong {
  overflow: hidden;
  color: #334155;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.avatar-empty-state {
  grid-column: 1 / -1;
  padding: 16px;
  border-radius: 18px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid rgba(234, 88, 12, .18);
  font-weight: 800;
  text-align: center;
}

.auth-submit-btn {
  width: 100%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ef4444, #991b1b);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(220, 38, 38, .24);
}.auth-admin-page {
  align-items: stretch;
}

.auth-info-pro {
  background:
    radial-gradient(circle at 16% 12%, rgba(220, 38, 38, .14), transparent 34%),
    linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .18);
}

.auth-info-pro h1 {
  color: #fff;
  letter-spacing: -.04em;
}

.auth-info-pro p {
  color: rgba(255, 255, 255, .72);
}

.auth-info-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.auth-info-points span {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.auth-card-pro {
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

.auth-card-head {
  margin-bottom: 20px;
}

.auth-card-head span {
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.auth-card-head h2 {
  margin: 6px 0;
  color: #111827;
}

.auth-card-head p {
  margin: 0;
  color: #64748b;
}

.avatar-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 18px;
}

.avatar-choice-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  cursor: pointer;
  text-align: center;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.avatar-choice-card:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(220, 38, 38, .28);
}

.avatar-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.avatar-choice-card:has(input:checked) {
  background: #fff1f2;
  border-color: rgba(220, 38, 38, .45);
  box-shadow: 0 12px 30px rgba(220, 38, 38, .12);
}

.avatar-choice-image {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #fee2e2, #ffffff);
}

.avatar-choice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-choice-image b {
  color: #991b1b;
  font-size: 13px;
  line-height: 1.1;
}

.avatar-choice-card strong {
  overflow: hidden;
  color: #334155;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.avatar-empty-state {
  grid-column: 1 / -1;
  padding: 16px;
  border-radius: 18px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid rgba(234, 88, 12, .18);
  font-weight: 800;
  text-align: center;
}

.auth-submit-btn {
  width: 100%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ef4444, #991b1b);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(220, 38, 38, .24);
}