/* ============================================================
   MOBILE-FIRST OPTIMIZATION
   DFW Garage Guy — Native-quality mobile experience
   ============================================================ */

/* === GLOBAL MOBILE FOUNDATIONS === */

/* Safe area support for iPhone notch */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Prevent horizontal overflow */
body {
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(37, 99, 235, 0.1);
}

/* === PHASE 2: LAYOUT OPTIMIZATION === */

@media (max-width: 768px) {

  /* --- Hamburger Menu --- */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-toggle:active {
    background: #f3f4f6;
  }

  .hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
  }

  .hamburger-icon span {
    display: block;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Header compact on mobile */
  .site-header {
    padding: 12px 16px;
    padding-top: calc(12px + var(--safe-top));
  }

  .site-header .wrap {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 0;
    padding: 0;
  }

  .site-title {
    font-size: 1.35rem;
    text-align: center;
  }

  /* Hide desktop nav, show hamburger */
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 100;
    padding: 80px 24px 32px;
    padding-bottom: calc(32px + var(--safe-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.mobile-nav-open {
    display: block;
    animation: slideNavIn 0.25s ease-out;
  }

  @keyframes slideNavIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .site-nav ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }

  .site-nav a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    text-align: left;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .site-nav a:hover,
  .site-nav a.active {
    background: #f0f4ff;
  }

  .site-nav a.header-cta {
    margin-top: 12px;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
    min-height: 52px;
  }

  /* Mobile nav close button */
  .mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-close:active {
    background: #e5e7eb;
  }

  /* Hide header auth on mobile — links are in hamburger menu */
  .header-auth {
    display: none;
  }

  /* --- Section Spacing --- */
  .popular-services-section,
  .why-choose-section,
  .before-after-section-ha,
  .service-areas-section-ha,
  .pricing-section-ha {
    padding: 2.5rem 1rem;
  }

  .final-cta-section-ha {
    padding: 3rem 1rem;
    padding-bottom: calc(3rem + var(--safe-bottom));
  }

  .section-title-ha {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .section-subtitle-ha {
    font-size: 0.9375rem;
  }

  /* --- Single Column Grids --- */
  .services-grid,
  .features-grid,
  .pricing-grid-ha,
  .ba-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .city-card {
    padding: 16px 12px;
  }

  .city-card h3 {
    font-size: 1.1rem;
    margin: 0 0 4px;
  }

  .city-card p {
    font-size: 0.8125rem;
  }

  /* --- Service Cards --- */
  .service-card {
    padding: 20px 16px;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .service-card h3 {
    font-size: 1.05rem;
    margin: 0 0 4px;
  }

  .service-rating {
    font-size: 0.8125rem;
    margin: 2px 0;
  }

  .service-price {
    font-size: 0.9375rem;
    margin: 4px 0 0;
  }

  /* --- Price Cards --- */
  .price-card-ha {
    padding: 24px 20px;
  }

  .price-card-ha:hover {
    transform: none;
    box-shadow: none;
  }

  .price-range-ha {
    font-size: 1.75rem;
  }

  .btn-price-cta {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  /* --- Feature Items (Steps) --- */
  .feature-item {
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .feature-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.25rem;
    margin: 0;
  }

  .feature-item h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
  }

  .feature-item p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* --- Before/After Section --- */
  .ba-details h3 {
    font-size: 1.35rem;
  }

  .btn-cta-secondary {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  /* --- Final CTA --- */
  .final-cta-box h2 {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  .final-cta-box p {
    font-size: 1rem;
  }

  .btn-final-cta {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 1.05rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* --- Footer --- */
  .site-footer {
    margin-top: 0;
    padding: 24px 16px;
    padding-bottom: calc(24px + var(--safe-bottom));
  }

  .footer-cities {
    gap: 4px 12px;
  }

  .footer-cities a {
    font-size: 0.8125rem;
    padding: 4px 0;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }

  /* --- City Pages --- */
  .city-cta {
    padding: 20px 16px;
  }

  .city-cta .city-cta-buttons a {
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  main .wrap {
    padding: 20px 16px 24px;
  }
}

/* === PHASE 3: FORM OPTIMIZATION === */

@media (max-width: 768px) {

  /* =============================================
     HERO FORM — Polished Mobile
     ============================================= */

  .hero-section-ha {
    min-height: auto;
    padding: 2rem 0.75rem 1.5rem;
  }

  .hero-content-ha h1 {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 0.375rem;
  }

  .hero-subtext {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    opacity: 0.9;
  }

  .hero-form-card {
    padding: 24px 20px 28px;
    border-radius: 16px;
    max-width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }

  .hero-form-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
    border: none;
    display: block;
    line-height: 1.3;
  }

  .hero-form {
    gap: 16px;
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    font-size: 16px;
    padding: 14px 16px;
    min-height: 50px;
    border-radius: 10px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #111827;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .hero-form input:focus,
  .hero-form select:focus,
  .hero-form textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

  .hero-form input::placeholder,
  .hero-form textarea::placeholder {
    color: #9ca3af;
  }

  .hero-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }

  .hero-form textarea {
    min-height: 80px;
    resize: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-section label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 6px;
    color: #374151;
  }

  .form-section select {
    max-width: 100%;
  }

  /* Radio pills — match quote modal */
  .hero-radio-group {
    flex-direction: row;
    gap: 10px;
  }

  .hero-radio {
    flex: 1;
    min-height: 48px;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 12px 12px;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    justify-content: center;
    text-align: center;
    color: #374151;
    gap: 6px;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-radio input[type="radio"] {
    display: none;
  }

  .hero-radio.selected {
    background: #eff6ff;
    border-color: #2563eb;
    color: #1d4ed8;
    font-weight: 600;
    box-shadow: 0 0 0 1px #2563eb;
  }

  .hero-submit-btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 24px;
    min-height: 52px;
    border-radius: 12px;
    width: 100%;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  }

  .hero-submit-btn:active {
    transform: scale(0.98);
  }

  .form-trust-text {
    font-size: 0.75rem;
    color: #9ca3af;
  }

  /* =============================================
     QUOTE MODAL — Polished Mobile Experience
     ============================================= */

  .quote-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .quote-modal-box {
    max-width: 100%;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
    padding: 0;
    padding-top: var(--safe-top);
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
  }

  /* Sticky header bar */
  .quote-modal-box::before {
    content: '';
    display: block;
    flex-shrink: 0;
  }

  .quote-modal-close {
    width: 36px;
    height: 36px;
    top: calc(12px + var(--safe-top));
    right: 16px;
    font-size: 1.25rem;
    z-index: 5;
    background: #e5e7eb;
    border-radius: 50%;
    color: #374151;
  }

  .quote-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 20px 56px 0 20px;
    margin: 0;
    color: #111827;
    border-bottom: none;
    display: block;
    line-height: 1.3;
  }

  .quote-modal-intro {
    font-size: 0.8125rem;
    margin: 6px 20px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #6b7280;
    line-height: 1.4;
  }

  /* Scrollable form body */
  .quote-form {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 20px 0;
  }

  .quote-form[hidden] {
    display: none !important;
  }

  .quote-form .quote-form-row {
    margin-bottom: 20px;
  }

  .quote-form-row-half {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Labels — clear hierarchy */
  .quote-form label {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
    letter-spacing: 0.01em;
  }

  /* Inputs — clean card-style */
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 16px;
    padding: 14px 16px;
    min-height: 50px;
    border-radius: 10px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #111827;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .quote-form input:focus,
  .quote-form select:focus,
  .quote-form textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #fff;
  }

  .quote-form input::placeholder,
  .quote-form textarea::placeholder {
    color: #9ca3af;
  }

  .quote-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: #111827;
  }

  .quote-form textarea {
    min-height: 80px;
    resize: none;
  }

  /* Radio buttons — pill-style selection */
  .quote-radio-group {
    flex-direction: row;
    gap: 10px;
  }

  .quote-radio {
    flex: 1;
    min-height: 48px;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 12px 12px;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    justify-content: center;
    text-align: center;
    color: #374151;
    gap: 6px;
    -webkit-tap-highlight-color: transparent;
  }

  .quote-radio input[type="radio"] {
    display: none;
  }

  .quote-radio.selected {
    background: #eff6ff;
    border-color: #2563eb;
    color: #1d4ed8;
    font-weight: 600;
    box-shadow: 0 0 0 1px #2563eb;
  }

  /* Sticky submit area at bottom */
  .quote-form-actions {
    position: sticky;
    bottom: 0;
    background: #f8f9fa;
    padding: 16px 0;
    padding-bottom: calc(16px + var(--safe-bottom));
    margin-top: 8px;
    border-top: 1px solid #e5e7eb;
  }

  .quote-submit {
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 24px;
    min-height: 52px;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  }

  .quote-submit:active {
    background: #1d4ed8;
    transform: scale(0.98);
  }

  .quote-trust-note {
    font-size: 0.6875rem;
    color: #9ca3af;
    margin-top: 8px;
  }

  /* Success state — full screen takeover */
  .quote-thanks {
    padding: 3rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f8f9fa;
  }

  .quote-thanks[hidden] {
    display: none !important;
  }

  .quote-thanks .quote-thanks-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    border-bottom: none;
    padding-bottom: 0;
    display: block;
    margin: 0 0 12px;
  }

  .quote-thanks p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 260px;
  }

  /* --- Login Forms --- */
  .login-container {
    margin: 24px auto;
    padding: 24px 20px;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #e5e7eb;
  }

  .auth-container {
    margin: 24px auto;
    padding: 0 12px;
  }

  .auth-card {
    padding: 28px 20px;
    border-radius: 10px;
  }

  .form-group input,
  .login-form input {
    font-size: 16px;
    min-height: 48px;
    padding: 14px 16px;
  }

  .btn-submit,
  .login-form .quote-submit {
    min-height: 52px;
    font-size: 1rem;
  }
}

/* === PHASE 4: NAVIGATION (Dashboard) === */

@media (max-width: 768px) {

  /* Dashboard header */
  .dashboard-header {
    padding: 16px 0;
  }

  .dashboard-header-inner {
    padding: 0 16px;
    gap: 12px;
  }

  .dashboard-welcome h1 {
    font-size: 1.15rem;
  }

  .dashboard-actions {
    gap: 8px;
    flex-wrap: wrap;
  }

  .dashboard-actions a,
  .dashboard-actions button {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.875rem;
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Scrollable tabs */
  .dashboard-tabs {
    display: flex;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding: 4px;
  }

  .dashboard-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.875rem;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }

  /* Lead cards on mobile */
  .lead-card {
    padding: 16px;
    border-radius: 10px;
  }

  .lead-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .lead-meta {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .lead-actions {
    padding-top: 8px;
  }

  .btn-claim {
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Project action buttons */
  .project-actions {
    flex-direction: column;
  }

  .project-actions .btn-small {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
  }

  /* Customer contact info */
  .customer-contact {
    padding: 14px;
  }

  .contact-grid {
    gap: 6px;
  }

  .contact-item {
    font-size: 0.875rem;
  }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 14px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.6875rem;
  }

  /* Marketplace page */
  .marketplace-page main {
    padding: 0 12px 32px;
  }

  .marketplace-header-inner {
    padding: 0 12px;
  }

  .marketplace-header {
    padding: 20px 0 16px;
    margin-bottom: 16px;
  }

  .marketplace-header h1 {
    font-size: 1.35rem;
  }

  .marketplace-tagline {
    font-size: 0.8125rem;
  }

  .section-header {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .section-title {
    font-size: 1rem;
  }

  /* Load more button */
  .btn-load-more {
    width: 100%;
    min-height: 48px;
    font-size: 0.9375rem;
  }
}

/* === PHASE 5: MODAL SYSTEM MOBILE === */

@media (max-width: 768px) {
  .modal-overlay.active {
    align-items: flex-end;
  }

  .modal-dialog {
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 24px 20px;
    padding-bottom: calc(24px + var(--safe-bottom));
    max-height: 85vh;
    overflow-y: auto;
  }

  .modal-title {
    font-size: 20px;
  }

  .modal-body {
    font-size: 15px;
  }

  .modal-footer {
    flex-direction: column;
    gap: 8px;
  }

  .modal-btn {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .modal-input {
    font-size: 16px;
    min-height: 48px;
    padding: 14px;
  }
}

/* === PHASE 6: MICRO-UX === */

/* Tap feedback — all interactive elements */
a:active,
button:active,
.service-card:active,
.city-card:active,
.price-card-ha:active,
.btn-claim:active,
.btn-price-cta:active,
.btn-cta-secondary:active,
.btn-final-cta:active,
.hero-submit-btn:active,
.quote-submit:active,
.modal-btn:active,
.tab-btn:active {
  opacity: 0.85;
  transform: scale(0.98);
}

/* Disabled button states */
button:disabled,
.btn-claim:disabled,
.hero-submit-btn:disabled,
.quote-submit:disabled {
  opacity: 0.5;
  pointer-events: none;
  transform: none;
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

.skeleton-card {
  height: 160px;
  margin-bottom: 16px;
}

.skeleton-line {
  height: 16px;
  margin-bottom: 12px;
  width: 80%;
}

.skeleton-line.short {
  width: 50%;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Success state */
.success-flash {
  animation: successPulse 0.4s ease-out;
}

@keyframes successPulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Error state */
.error-shake {
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Smooth focus transitions */
input:focus,
select:focus,
textarea:focus {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Lazy load fade in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
  opacity: 1;
}

/* Admin page mobile */
@media (max-width: 768px) {
  .admin-container {
    padding: 16px;
  }

  .admin-container table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.8125rem;
  }

  .admin-container th,
  .admin-container td {
    padding: 10px 12px;
    white-space: nowrap;
  }
}

/* Reset password page mobile */
@media (max-width: 768px) {
  .reset-container {
    padding: 28px 20px;
    border-radius: 10px;
    max-width: 100%;
  }

  .reset-container h1 {
    font-size: 22px;
  }

  .reset-container .form-group input {
    font-size: 16px;
    min-height: 48px;
  }

  .reset-container .btn-primary {
    min-height: 48px;
    font-size: 16px;
  }
}

/* Operator signup mobile */
@media (max-width: 768px) {
  .signup-modal-box {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 10px;
    padding: 20px 16px;
  }

  .signup-modal-box input,
  .signup-modal-box select {
    font-size: 16px;
    min-height: 48px;
    padding: 14px;
  }

  .signup-modal-box button {
    min-height: 48px;
    font-size: 1rem;
  }
}
