
/* ================================
   AUTH / SIGN-IN LAYOUT
================================ */

.auth-page {
  min-height: 100vh;
  display: flex;
  background: var(--gradient-hero);
  overflow: hidden;
}

/* 2-column layout */
.auth-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

/* LEFT VISUAL */
.auth-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

/* reuse your existing clipped frame */
.auth-media-frame {
  width: 100%;
  max-width: 520px;
  transform: none;
}

/* overlay gradient to unify with UI */
.auth-media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,200,183,0.18), transparent 50%),
    linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
  pointer-events: none;
}

/* RIGHT PANEL */
.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
}

.auth-box {
  width: 100%;
  max-width: 420px;
}

.auth-box h1 {
  font-size: 48px;
  margin: 10px 0 20px;
  letter-spacing: -0.03em;
}

.auth-box p {
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

/* FORM */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-text-muted);
}

.auth-form input {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  outline: none;
  font-size: 14px;
}

.auth-form input:focus {
  border-color: var(--color-primary);
}

/* LINKS */
.auth-links {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-media {
    display: none;
  }

  .auth-panel {
    padding: 40px;
  }
}