.booking {
  display: flex;
  width: 100%;
  height: calc(100vh - 60px);
}
@media (max-width: 768px) {
  .booking {
    flex-direction: column;
  }
}
.booking__image {
  position: relative;
  flex: 1;
  height: 100%;
  background: url("../img/car/aito/aito5_pc.webp") no-repeat center center/cover;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .booking__image {
    flex: none;
    height: 35vh;
  }
}
.booking .booking__image-info {
  position: absolute;
  top: 80px;
  left: 60px;
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .booking .booking__image-info {
    top: 35px;
    left: 20px;
  }
}
.booking .booking__image-info h2 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .booking .booking__image-info h2 {
    font-size: 40px;
  }
}
.booking .booking__image-info p {
  font-size: 30px;
}
@media (max-width: 768px) {
  .booking .booking__image-info p {
    font-size: 14px;
  }
}
.booking__form {
  width: 600px;
  max-width: 500px;
  padding: 50px 40px;
}
@media (max-width: 768px) {
  .booking__form {
    flex: 1;
    width: 100%;
    padding: 20px 40px;
  }
}
.booking__title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.form__group {
  margin-bottom: 20px;
}
.form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}
.form__input:focus {
  outline: none;
  border-color: #007bff;
}
.form__input::-moz-placeholder {
  color: #999;
}
.form__input::placeholder {
  color: #999;
}
.form__submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #007bff, #8400ff);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 9;
}
[lang=zh] .form__submit {
  letter-spacing: 2px;
}
.form__submit::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #007bff, #8400ff);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
  filter: blur(10px);
}
.form__submit:hover {
  transform: translateY(-3px);
}
.form__submit:hover::after {
  bottom: -15px;
  opacity: 0.5;
}/*# sourceMappingURL=booking.css.map */