/* Uparking Booking — основные стили формы */


    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #f9fafb;
      color: #1f2937;
      margin: 0;
      padding: 20px;
      line-height: 1.6;
    }
    .booking-form-container {
      background: white;
      padding: 24px;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      max-width: 700px;
      margin: 0 auto;
    }
    h1 {
      text-align: center;
      font-size: 1.6rem;
      color: #1e40af;
      margin-top: 0;
      margin-bottom: 20px;
    }
    .form-group {
      margin-bottom: 16px;
    }
    label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      font-size: 0.95rem;
    }



    input, select {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }


    .time-row {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
    }
    .time-row > div {
      flex: 1;
    }
    .submit-btn {
      width: 100%;
      padding: 14px;
      background-color: #27ae60;
      color: white;
      font-weight: bold;
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .submit-btn:disabled {
      background-color: #999;
      cursor: not-allowed;
    }



.uparking-booking-wrapper {
    padding: 20px 0;
}

.uparking-booking-wrapper h1 {
    font-size: 1.8rem;
    color: #1e40af;
    margin: 0 0 16px;
    text-align: center;
}

.uparking-booking-wrapper p {
    color: #555;
    margin: 0 0 24px;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.booking-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
}

.booking-form-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.booking-form-container input,
.booking-form-container select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}



/* Время заезда/выезда */
.time-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.time-row > div {
    flex: 1;
}

/* Кнопка отправки */
.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

/* Адаптивность */
@media (max-width: 600px) {
    .booking-form-container {
        padding: 16px;
    }
}




/* --- Фикс телефона под флагом --- */
.iti {
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
}

.iti__tel-input {
    width: 100% !important;
    padding: 14px 14px 14px 56px !important; /* top, right, bottom, LEFT */
    border: 1px solid #cbd5e0 !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
    background: white !important;
    color: #1a1a1a !important;
    outline: none !important;
}

.iti__tel-input:focus {
    border-color: #3498db !important;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15) !important;
}