/* RNA Members — Auth Pages CSS */
.rna-auth-page { min-height: 100vh; background: #f9f6ef; }

.rna-auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.rna-auth-card-wide { grid-column: 1 / -1; }

.rna-auth-card {
  background: #fff;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rna-auth-brand { margin-bottom: 32px; }
.rna-auth-logo {
  font-family: 'Bebas Neue', Georgia, serif;
  font-size: 28px;
  color: #c8102e;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.rna-auth-logo span {
  color: #1c2b3a;
  margin-left: 6px;
  font-size: 18px;
  letter-spacing: .2em;
}
.rna-auth-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #0b0a08;
  margin: 0 0 8px;
  line-height: 1.15;
}
.rna-auth-sub {
  font-size: 13px;
  color: #6b6455;
  line-height: 1.65;
  margin: 0;
}

.rna-auth-notice {
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 20px;
  border-left: 3px solid;
}
.rna-auth-notice.error   { background: #fdf0f2; color: #c8102e; border-color: #c8102e; }
.rna-auth-notice.success { background: #e8f5ee; color: #0a7a45; border-color: #0a7a45; }

.rna-auth-form { display: flex; flex-direction: column; gap: 14px; }
.rna-auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.rna-auth-field { display: flex; flex-direction: column; gap: 5px; }
.rna-auth-field label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #888;
}
.rna-auth-field input,
.rna-auth-field select {
  border: 1px solid #ddd7c8;
  background: #f9f6ef;
  padding: 10px 13px;
  font-size: 13px;
  font-family: inherit;
  color: #0b0a08;
  outline: none;
  transition: border-color .15s;
}
.rna-auth-field input:focus { border-color: #c8102e; background: #fff; }

.rna-auth-check {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #6b6455;
}
.rna-auth-check a { color: #c8102e; text-decoration: none; }
.rna-auth-check input[type="checkbox"] { margin-right: 6px; }

.rna-auth-btn {
  background: #c8102e;
  color: #fff;
  border: none;
  padding: 13px 24px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
}
.rna-auth-btn:hover { background: #a50d25; }

.rna-auth-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0ece0;
  font-size: 12.5px;
  color: #6b6455;
  text-align: center;
}
.rna-auth-footer a { color: #c8102e; text-decoration: none; font-weight: 600; }

/* Role selector */
.rna-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.rna-role-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #ddd7c8;
  background: #f9f6ef;
  cursor: pointer;
  font-size: 12px;
  color: #1c2b3a;
  font-weight: 500;
  transition: all .15s;
}
.rna-role-item:has(input:checked) {
  border-color: #c8102e;
  background: #fdf0f2;
  color: #c8102e;
}
.rna-role-item input { display: none; }

/* Side panel */
.rna-auth-side {
  background: #1c2b3a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.rna-auth-side::before {
  content: 'RNA';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', Georgia, serif;
  font-size: 200px;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
}
.rna-auth-side-inner { position: relative; z-index: 2; }
.rna-auth-side-inner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}
.rna-auth-side-inner p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 24px;
}
.rna-auth-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rna-auth-benefits li {
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rna-auth-portals {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rna-auth-portals span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

/* Responsive */
@media (max-width: 768px) {
  .rna-auth-wrap { grid-template-columns: 1fr; }
  .rna-auth-side { display: none; }
  .rna-auth-card { padding: 36px 24px; }
  .rna-auth-grid { grid-template-columns: 1fr; }
  .rna-role-grid { grid-template-columns: 1fr 1fr; }
}
