/* Импорт шрифта Roboto из Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
/* Основные стили для body */
body {
  font-family: "Roboto", sans-serif;
 /* Градиентный фон */
 background: radial-gradient(at 75% 30%, rgba(80, 40, 20, 0.95), transparent 70%),
              radial-gradient(at 20% 90%, rgba(40, 60, 80, 0.9), transparent 80%),
              linear-gradient(135deg, #0A0C10, #0D1117);
 display: flex;
 justify-content: center;
 align-items: center;
 min-height: 100vh;
 margin: 10;
  ); 
}
/* Контейнер формы аренды */
.rental-form {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 30px;
  backdrop-filter: blur(9px) saturate(120%); 
  -webkit-backdrop-filter: blur(9px) saturate(120%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
}
/* Заголовок формы */
.form-header {
  text-align: center;
  margin-bottom: 20px;
}
/* Логотип в заголовке */
.form-header .logo {
  max-width: 150px;
  margin-bottom: 10px;
}
/* Заголовок h2 */
h2 {
  margin: 0;
  color: #cccccc;
}
/* Группа полей ввода с двумя колонками */
.form-group-group {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 15px;
}
/* Основные группы полей формы */
.form-group,
.car-selection {
  margin-bottom: 15px;
}
/* Выравнивание групп в .form-group-group */
.form-group-group .form-group {
  flex: 1;
}
/* Стили для текста меток (label) */
label {
  display: block;
  color: white;
  font-size: 16px;
}
/* Стили для полей ввода и выпадающих списков */
input,
select {
  width: 100%;
  height: 40px;
  padding: 10px;
  margin-top: 5px;
  border-radius: 10px;
  border: none;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  outline: none;
  font-size: 16px;
}
/* Чекбоксы в форме */
.checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
/* Распределение чекбоксов в две колонки */
.checkboxes label {
  flex: 1 1 30%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
.checkboxes input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
/* Стили для кнопки отправки формы */
button {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            position: relative;
            color: white;
            background: linear-gradient(
                145deg,
                #ff9a00 20%,
                #ffb347 50%,
                #ffd700 100%
            );
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            overflow: hidden;
}
button:hover {
  transform: translateY(-4px); /* Приподнятие кнопки */
  backdrop-filter: blur(4px) saturate(80%); /* Увеличение размытия */
  -webkit-backdrop-filter: blur(4px) saturate(80%);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.07);
}
button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}
/* Неактивная кнопка */
button:disabled {
  background: rgba(255, 255, 255, 0.07); /* Ещё более размытый стеклянный эффект */
  border: 0px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}
/* Заголовок расчета стоимости аренды */
.header-text {
  text-align: center;
  color: white;
  font-weight: bold;
}
/* Блок расчета стоимости аренды */
.price-calculation {
  text-align: center;
  color: white;
  font-weight: bold;
}
/* Изображение автомобиля */
.car-image img {
  width: 100%;
  border-radius: 10px;
}
/* Контейнер с дополнительной информацией */
.text-container {
  color: #aaaaaa;
  font-size: 11px;
  padding: 15px;
}
/* Ссылки в тексте */
.text-container a {
  color: #808080;
  font-size: 11px;
}
/* Кстати, отличный рентакар */

/* Все стили by GPT & Handmade fix */