#ft-login-wrap {
  font-family: 'Questrial', sans-serif;
}

.ft-login-page {
  display: grid;
  grid-template-columns: 1fr 320px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border-radius: 20px;
  min-height: 600px;
}

@media (max-width: 820px) {
  .ft-login-page { grid-template-columns: 1fr; }
  .ft-right { display: none; }
}

/* ── LEFT ── */
.ft-left {
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border-radius: 20px 0 0 20px;
  overflow-y: auto;
}
@media (max-width: 600px) { .ft-left { padding: 32px 24px; } }

/* Logo */
.ft-logo-wrap img { height: 52px; object-fit: contain; }
.ft-logo-fallback {
  font-family: 'Londrina Solid', sans-serif;
  font-size: 26px; font-weight: 900; color: #4778e5;
}

/* Head */
.ft-form-head h1 {
  font-family: 'Londrina Solid', sans-serif;
  font-size: 30px; font-weight: 900;
  color: #29377f; text-transform: uppercase;
  line-height: 1.15; margin: 0 0 6px;
}
.ft-form-head p { font-size: 14px; color: #6b7280; margin: 0; }

/* Messages */
.ft-msg { padding: 10px 14px; border-radius: 10px; font-size: 13px; }
.ft-msg-error   { background: #fee2e2; border: 1px solid #fca5a5; color: #dc2626; }
.ft-msg-success { background: #dcfce7; border: 1px solid #86efac; color: #16a34a; }

/* Booking chip */
.ft-sitter-chip {
  display: flex; align-items: center; gap: 8px;
  background: #eef2ff; border: 1px solid #c7d2fe;
  border-radius: 10px; padding: 10px 14px;
  font-size: 13px; color: #3730a3;
}

/* ── ROLE TOGGLE ── */
.ft-role-toggle {
  display: flex; gap: 6px;
  background: #f3f4f6;
  border-radius: 12px; padding: 4px;
}
.ft-role-btn {
  flex: 1; padding: 10px 14px;
  border: none; border-radius: 10px;
  font-family: 'Grandstander', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.4px;
  color: #6b7280; background: transparent;
  cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.ft-role-btn.active {
  background: #fff; color: #29377f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Form */
.ft-form { display: flex; flex-direction: column; gap: 16px; }

.ft-field { display: flex; flex-direction: column; gap: 6px; }
.ft-field label {
  font-size: 10px; font-family: 'Grandstander', sans-serif;
  font-weight: 700; color: #9ca3af;
  text-transform: uppercase; letter-spacing: 0.7px;
}
.ft-field input {
  padding: 13px 16px; border: 1px solid #e5e7eb;
  border-radius: 10px; font-family: 'Questrial', sans-serif;
  font-size: 15px; color: #1f2a44; background: #fff;
  outline: none; transition: border-color .2s, box-shadow .2s;
  width: 100%; box-sizing: border-box;
}
.ft-field input:focus { border-color: #5b5fe5; box-shadow: 0 0 0 3px rgba(91,95,229,0.1); }
.ft-field input.ft-err { border-color: #e53935; background: #fff8f8; }
.ft-field input::placeholder { color: #c4c8d8; }

/* Password */
.ft-pw-wrap { position: relative; }
.ft-pw-wrap input { width: 100%; padding-right: 44px; }
.ft-eye-btn {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  font-size: 16px; color: #9ca3af; padding: 4px; line-height: 1;
}
.ft-eye-btn:hover { color: #5b5fe5; }

/* Remember / forgot */
.ft-row-between {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}
.ft-check-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #6b7280; cursor: pointer;
}
.ft-check-label input { display: none; }
.ft-checkmark {
  width: 16px; height: 16px;
  border: 1.5px solid #d1d5db; border-radius: 4px;
  flex-shrink: 0; transition: all .2s;
  position: relative; background: #fff;
}
.ft-check-label input:checked + .ft-checkmark { background: #5b5fe5; border-color: #5b5fe5; }
.ft-check-label input:checked + .ft-checkmark::after {
  content: ''; position: absolute;
  left: 4px; top: 1px; width: 4px; height: 8px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.ft-forgot {
  font-size: 11px; font-family: 'Grandstander', sans-serif;
  font-weight: 700; color: #9ca3af;
  text-transform: uppercase; letter-spacing: 0.4px;
  text-decoration: none;
}
.ft-forgot:hover { color: #5b5fe5; }

/* Buttons */
.ft-btn-primary {
  width: 100%; padding: 15px; border-radius: 12px;
  border: none; background: #4778e5; color: #fff;
  font-family: 'Grandstander', sans-serif; font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.8px;
  cursor: pointer; transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(71,120,229,0.3);
}
.ft-btn-primary:hover:not(:disabled) { background: #3a65d4; }
.ft-btn-primary:disabled { opacity: .6; cursor: not-allowed; }

.ft-btn-google {
  width: 100%; padding: 13px; border-radius: 12px;
  border: 1.5px solid #e5e7eb; background: #fff; color: #374151;
  font-family: 'Questrial', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.ft-btn-google:hover { border-color: #c7d2fe; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

.ft-divider {
  display: flex; align-items: center; gap: 12px; color: #d1d5db;
}
.ft-divider::before, .ft-divider::after { content: ''; flex: 1; height: 1px; background: #e5e7eb; }
.ft-divider span {
  font-family: 'Grandstander', sans-serif; font-weight: 700;
  font-size: 11px; text-transform: uppercase;
  color: #9ca3af; letter-spacing: 0.6px;
}

.ft-switch-text { font-size: 13px; color: #9ca3af; margin: 0; }
.ft-link { color: #5b5fe5; text-decoration: none; font-weight: 700; }
.ft-link:hover { text-decoration: underline; }
.ft-back-home {
  font-size: 12px; color: #9ca3af;
  font-family: 'Grandstander', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.4px; text-decoration: none;
}
.ft-back-home:hover { color: #5b5fe5; }

/* ── RIGHT ── */
.ft-right {
  background: linear-gradient(160deg, #4778e5 0%, #29377f 100%);
  border-radius: 0 20px 20px 0; overflow-y: auto;
}
.ft-right-inner {
  padding: 48px 32px;
  display: flex; flex-direction: column; gap: 20px;
}

.ft-shield-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
}

.ft-right-badge { display: flex; flex-direction: column; }
.ft-right-badge span {
  font-family: 'Grandstander', sans-serif;
  font-size: 20px; font-weight: 700;
  color: #fff; line-height: 1.25; text-transform: uppercase;
}

.ft-right-desc {
  font-size: 13px; color: rgba(255,255,255,0.7);
  line-height: 1.6; margin: 0;
}

.ft-stats { display: flex; flex-direction: column; gap: 12px; }
.ft-stat { display: flex; align-items: center; gap: 12px; }
.ft-stat-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ft-stat-num { font-family: 'Grandstander', sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
.ft-stat-label { font-size: 10px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* Role panel */
.ft-role-panel {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px; padding: 16px;
  transition: all .3s;
}
.ft-role-panel-icon { font-size: 24px; margin-bottom: 8px; }
.ft-role-panel-title {
  font-family: 'Grandstander', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #fff; margin: 0 0 6px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.ft-role-panel-desc { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.5; margin: 0 0 10px; }
.ft-role-panel-links { display: flex; flex-direction: column; gap: 4px; }
.ft-role-panel-links span { font-size: 11px; color: rgba(255,255,255,0.5); }
.ft-panel-link {
  font-family: 'Grandstander', sans-serif;
  font-size: 11px; font-weight: 700;
  color: #fff; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.ft-panel-link:hover { text-decoration: underline; }

.ft-reviews { display: flex; flex-direction: column; gap: 12px; }
.ft-review { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 12px; }
.ft-stars { color: #fbbf24; font-size: 12px; margin-bottom: 5px; }
.ft-review p { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.5; margin-bottom: 4px; }
.ft-review span { font-family: 'Grandstander', sans-serif; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.45); }