.footer-note {
  position: fixed;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.76rem;
  color: #9caeac;
  letter-spacing: 0.03em;
}

.acct-signin-btn {
  background: #ff9800;
  color: white;
  border: none;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.acct-signin-btn:hover {
  background: #ffb74d;
}

.acct-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
  color: #8a9199;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.acct-divider::before,
.acct-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.acct-category-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 0.35rem;
}

.acct-type-btn--full {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 63%;
  margin: 0 auto;
  min-height: auto;
  padding: 14px 18px;
}

.acct-type-btn--full .acct-type-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #004f4d;
}

.form-header h1 {
  color: #004f4d;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #666;
  font-size: 0.95rem;
}

.hint-text {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.25rem;
  font-style: italic;
}

.file-upload-area:hover {
  border-color: #004f4d;
  background: #f0fdf4;
}

.file-upload-area.has-file {
  border-color: #90be6d;
  background: #f0fdf4;
}

.file-upload-area i {
  font-size: 1.5rem;
  color: #888;
  margin-bottom: 0.5rem;
  display: block;
}

.file-upload-area.has-file i {
  color: #90be6d;
}

.file-upload-area input[type="file"] {
  display: none;
}

.file-name {
  font-size: 0.85rem;
  color: #004f4d;
  margin-top: 0.5rem;
  font-weight: 500;
}

.badge--verification {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1;
  z-index: 5;
  color: white;
  background: rgba(0, 60, 58, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.1px;
}

.badge--verification i {
  font-size: 10.5px;
}

.badge--verification-developer {
  background: #06768d;
}

.badge--verification-private {
  background: rgba(26, 153, 143, 0.9);
  color: #ffffff;
}

.badge--status-under_contract {
  background: rgba(245, 158, 11, 0.9);
}

.badge--status-reserved {
  background: rgba(245, 158, 11, 0.9);
}

.badge--status-pending {
  background: rgba(245, 158, 11, 0.9);
}

.badge--status-expired {
  background: #9ca3af;
}

.badge--status-archived {
  background: #9ca3af;
}

.badge--status-paused {
  background: #d97706;
}

.archive-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #004f4d;
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

.toggle-label {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}

.legal-content {
  background: #f8f9fa;
  padding: 2rem 0;
  min-height: 70vh;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.summary-item {
  text-align: center;
}

.summary-item i {
  font-size: 2rem;
  color: #90be6d;
  margin-bottom: 1rem;
}

.summary-item h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.login-submit-btn {
  width: 100%;
  background: #004f4d;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
  margin-bottom: 1rem;
}

.login-submit-btn:hover:not(:disabled) {
  background: #003a38;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 79, 77, 0.3);
}

.login-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.vendor-tile:hover {
  border-color: #90be6d;
  box-shadow: 0 3px 14px rgba(0, 79, 77, 0.09);
}

.vendor-info {
  flex: 1;
  min-width: 0;
}

.vendor-contact-btn.phone-btn::after {
  content: " Phone";
}

.vendor-contact-btn.email-btn::after {
  content: " Email";
}

.premium-location i {
  color: #ff9500;
}

.premium-cta:hover {
  opacity: 0.9;
}

.pamphlet-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.pamphlet-close:hover {
  background: #e8890a;
  transform: scale(1.1);
}

.pamphlet-left-page {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-right: 2px solid #e9ecef;
}

.pamphlet-right-page {
  background: linear-gradient(145deg, #fefefe 0%, #f5f6f7 100%);
}

.brand-line {
  width: 60px;
  height: 3px;
  background: #188f8b;
  margin: 0 auto 10px;
}

.pw-toggle-wrap .pw-eye-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  font-size: 1rem;
}

.pw-toggle-wrap .pw-eye-btn:hover {
  color: #004f4d;
}

.badge--status-sold {
  background: rgba(16, 185, 129, 0.9);
}

.badge--status-rented {
  background: rgba(16, 185, 129, 0.9);
}

.badge--status-off_market {
  background: rgba(107, 114, 128, 0.9);
}

.badge--status-withdrawn {
  background: rgba(107, 114, 128, 0.9);
}

@media (max-width: 768px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }
  .pamphlet-book {
    flex-direction: column;
    min-height: auto;
  }
  .pamphlet-left-page {
    border-right: none;
    border-bottom: 2px solid #e9ecef;
  }
}
