@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════════════════
   booking_auth_forms.css
   Shared styles for booking-login-form & booking-register-form components.
   Cohesive with booking_welcome_step persona:
     • DM Serif Display (headings) + DM Sans (body)
     • Dark slate (#0f172a) dominant, clean white panels
     • Subtle orb decorations on the left side panel
   ═══════════════════════════════════════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap");
/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --blf-dark: #0f172a;
  --blf-dark-mid: #1e293b;
  --blf-slate: #475569;
  --blf-muted: #94a3b8;
  --blf-border: #e2e8f0;
  --blf-bg: #f8fafc;
  --blf-white: #ffffff;
  --blf-accent: #0f172a;
  --blf-radius: 24px;
  --blf-radius-sm: 12px;
  --blf-transition: .2s ease;
  --blf-shadow: 0 24px 80px rgba(0,0,0,.11);
}

/* ── Wrapper ───────────────────────────────────────────────────────────────── */
.blf-wrap {
  font-family: "DM Sans", sans-serif;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  animation: blf-fade-up 0.5s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}

/* ── Card ──────────────────────────────────────────────────────────────────── */
.blf-card {
  display: flex;
  width: 100%;
  max-width: 760px;
  border-radius: var(--blf-radius) !important;
  overflow: hidden;
  box-shadow: var(--blf-shadow);
  border: none !important;
}

.blf-card--register {
  max-width: 860px;
}

/* ── Left decorative side panel ────────────────────────────────────────────── */
.blf-side {
  width: 240px;
  flex-shrink: 0;
  background: var(--blf-dark);
  position: relative;
  overflow: hidden;
}

.blf-side-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 2.4rem;
  z-index: 1;
}

/* Decorative orbs */
.blf-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.blf-orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.04);
  top: -80px;
  right: -80px;
}

.blf-orb-2 {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.03);
  bottom: 60px;
  left: -60px;
}

.blf-orb-3 {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blf-side-content {
  position: relative;
  z-index: 2;
}

.blf-logo {
  max-width: 120px;
  max-height: 52px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.blf-side-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  margin: 0;
  line-height: 1.55;
  letter-spacing: 0.2px;
}

/* ── Main form area ────────────────────────────────────────────────────────── */
.blf-main {
  flex: 1;
  background: var(--blf-white);
  padding: 2.8rem 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

/* ── Form heading ──────────────────────────────────────────────────────────── */
.blf-form-head {
  margin-bottom: 2rem;
}

.blf-form-head h2 {
  font-family: "DM Serif Display", serif;
  font-size: 1.9rem;
  color: var(--blf-dark);
  margin: 0 0 6px;
  letter-spacing: -0.4px;
  line-height: 1.15;
}

.blf-form-head p {
  font-size: 0.85rem;
  color: var(--blf-muted);
  margin: 0;
  font-weight: 300;
}

/* ── Fields ────────────────────────────────────────────────────────────────── */
.blf-fields {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.blf-fields--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
  align-items: start;
}

.blf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blf-field--full {
  grid-column: 1/-1;
}

/* Field top row (label + forgot link) */
.blf-field-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blf-dark-mid);
  letter-spacing: 0.3px;
}

/* ── Input wrapper ─────────────────────────────────────────────────────────── */
.blf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.blf-input-icon {
  position: absolute;
  left: 14px;
  color: var(--blf-muted);
  font-size: 0.82rem;
  pointer-events: none;
  z-index: 1;
  transition: color var(--blf-transition);
}

.blf-input-wrap input,
.blf-input-wrap select {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid var(--blf-border);
  border-radius: var(--blf-radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: var(--blf-dark);
  background: var(--blf-bg);
  outline: none;
  transition: border-color var(--blf-transition), box-shadow var(--blf-transition), background var(--blf-transition);
  appearance: none;
  -webkit-appearance: none;
}

.blf-input-wrap input:focus,
.blf-input-wrap select:focus {
  border-color: var(--blf-dark);
  background: var(--blf-white);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.07);
}

.blf-input-wrap input:focus ~ .blf-input-icon,
.blf-input-wrap:focus-within .blf-input-icon {
  color: var(--blf-dark);
}

/* Password toggle eye */
.blf-eye {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--blf-muted);
  cursor: pointer;
  font-size: 0.82rem;
  padding: 4px;
  transition: color var(--blf-transition);
  z-index: 1;
}

.blf-eye:hover {
  color: var(--blf-dark);
}

/* Select chevron */
.blf-input-wrap--select .blf-select-arrow {
  position: absolute;
  right: 14px;
  color: var(--blf-muted);
  font-size: 0.75rem;
  pointer-events: none;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.blf-btn-primary {
  width: 100%;
  padding: 12px 20px;
  background: var(--blf-dark);
  color: #fff;
  border: none;
  border-radius: var(--blf-radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--blf-transition), transform 0.15s, box-shadow var(--blf-transition);
  letter-spacing: 0.2px;
}

.blf-btn-primary:hover {
  background: var(--blf-dark-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.blf-btn-primary:active {
  transform: translateY(0);
}

.blf-btn-primary i {
  transition: transform 0.2s;
}

.blf-btn-primary:hover i {
  transform: translateX(3px);
}

/* ── Misc ──────────────────────────────────────────────────────────────────── */
.blf-forgot {
  font-size: 0.76rem;
  color: var(--blf-muted);
  text-decoration: none;
  transition: color var(--blf-transition);
}

.blf-forgot:hover {
  color: var(--blf-dark);
}

.blf-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blf-border);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--blf-muted);
}

.blf-divider::before,
.blf-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--blf-border);
}

.blf-switch-line {
  font-size: 0.82rem;
  color: var(--blf-muted);
  margin: 0;
}

.blf-switch-line a {
  color: var(--blf-dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--blf-transition);
}

.blf-switch-line a:hover {
  border-color: var(--blf-dark);
}

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes blf-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .blf-side {
    display: none;
  }
  .blf-main {
    padding: 2rem 1.4rem;
  }
  .blf-fields--two-col {
    grid-template-columns: 1fr;
  }
  .blf-card, .blf-card--register {
    border-radius: 18px !important;
  }
}