/* ============================================================
   NECHO — NEW FULL SCREEN AUTH
   ============================================================ */

.auth-full-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 100px 1rem 60px;
  /* Space for navbar and bottom */
  overflow-y: auto;
  overflow-x: hidden;
}

.auth-container {
  width: 100%;
  max-width: 860px;
  /* Reduced for neatness */
  background: var(--surface);
  display: flex;
  flex-direction: row;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
    max-width: 400px;
  }
}

/* ── Left Side (Hero) ─────────────────────────────────────── */
.auth-hero {
  flex: 0.9;
  background: var(--bg);
  padding: 3rem;
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.auth-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  position: relative;
  z-index: 20;
}

/* Blur strips simulation */
.auth-strips {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background: linear-gradient(to top, transparent, var(--bg));
  pointer-events: none;
  z-index: 5;
}

.auth-strip {
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 69%, rgba(255, 255, 255, 0.04) 100%);
  opacity: 0.15;
}

.auth-orb-orange {
  position: absolute;
  bottom: -4rem;
  left: -2rem;
  width: 12rem;
  height: 12rem;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.5;
  z-index: 2;
}

.auth-orb-white {
  position: absolute;
  bottom: -1rem;
  left: 3rem;
  width: 6rem;
  height: 4rem;
  background: #fff;
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0.25;
  z-index: 3;
}

/* ── Right Side (Form) ────────────────────────────────────── */
.auth-form-side {
  flex: 1.1;
  background: var(--surface);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.auth-icon {
  color: #e84d1c;
  margin-bottom: 1.5rem;
}

.auth-form-side h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.auth-form-side p {
  color: var(--text);
  opacity: 0.4;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label-new {
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 0.4rem;
  display: block;
}

.form-input-new {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.6rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
}

.form-input-new:focus {
  border-color: var(--accent);
  background: #151515;
  box-shadow: 0 0 0 1px var(--accent);
}

.form-input-new::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-btn-new {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 0.6rem;
  padding: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0.75rem;
}

.form-btn-new:hover {
  background: var(--accent);
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--glow);
}

.auth-footer-new {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: #555;
}

.auth-footer-new a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  font-weight: 500;
  transition: border-color 0.2s;
}

.auth-footer-new a:hover {
  border-color: var(--accent);
}

@media (max-width: 640px) {
  .auth-hero {
    padding: 2.5rem 1.5rem;
  }

  .auth-form-side {
    padding: 2.5rem 1.5rem;
  }
}

.auth-error-new {
  color: var(--accent);
  font-size: 0.7rem;
  margin-top: 0.3rem;
  min-height: 1rem;
}