.title-simple-hab{
    margin-bottom: 30px !important;
    color: #000954;
}

.section.container{
    padding: 120px 0px;
}
.swiper.habitacion-select .swiper-slide>img{
    height: 500px;
}
 .swiper.habitacion-point .swiper-slide>img{
    height: 100px;
}
.swiper-slide>img{
    width: 100%;
    object-fit: cover;
}
.formulario {
    width: 500px;
    border-radius: 4px;
    padding: 20px;
    background-color: #eff2fd;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .box-input > input, .box-input > select, .box-input > textarea {
      width: 100%;
    padding: 12px 20px;
    border: none;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
  }
  .box-input > textarea {
      resize: vertical;
      min-height: 120px;
  }
  .box-input > input::placeholder, 
  .box-input > textarea::placeholder {
      color: #999;
      opacity: 1;
  }
  .label-fecha {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: #475694;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }
  .fecha-input-wrapper {
      display: flex;
      flex-direction: column;
      gap: 0;
  }
  .input-with-icon {
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
  }
  .input-with-icon > input {
      width: 100%;
      padding: 12px 45px 12px 20px;
      border: none;
      box-sizing: border-box;
      font-family: inherit;
      font-size: 14px;
      background-color: #ffffff;
      cursor: pointer;
      transition: background-color 0.3s ease;
  }
  .input-with-icon > input::placeholder {
      color: #999;
      opacity: 1;
  }
  .input-with-icon > input:hover {
      background-color: #f5f7fa;
  }
  .input-with-icon > input:focus {
      background-color: #ffffff;
      outline: none;
  }
  .calendar-icon {
      position: absolute;
      right: 15px;
      width: 18px;
      height: 18px;
      color: #a0aec0;
      pointer-events: none;
      opacity: 1;
  }
  .btn-submit{
      background-color: rgb(48 60 157);
      color: #fff;
      border-radius: 4px;
  }
  .response-email{
      width: 100%;
      display: none;
      padding: 10px 20px;
  }
  .response-email.sucess{
      display: flex;
      background-color: rgb(10 202 118 / 62%);
      color: rgb(2, 72, 46);
  }