@import '../../css/global.css';


  #booking{
    background-color: var(--blue-color);
  }


label{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--bg-color);
  margin-bottom: 1rem;
}

  input{
    box-sizing:border-box;
    background-color: #6E8CB7;
    border: none !important;
    color: #ffffff;
  }

/* Target placeholder color */
.form-control::placeholder {
  color: white; /* Replace 'gray' with your desired color */
  opacity: 1;  /* Ensures full opacity for the color */
  font-family: Arial, Helvetica, sans-serif;
}


  .form-group{
    width: 90%;
  }

  .form-group > *{
    margin-block:0.4rem;
  }
  .booking .container .text-left h2{
    padding-top: 5vw;
  }
  
  .booking-text{
    margin-top:100px;
  }

  .row-card-booking{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-content: space-between;
    align-items: right;
    margin-top: 1rem;
}
  
.background-image {
  background-image: url(./booking-card.png);
  background-size: cover;
  background-position: 0px 0px;
  background-repeat: no-repeat;
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

  .text-section {
    text-align: left;
    color: #ffffff;
    width: 30vw;
  }
  
  .booking-form-container {
    background-color: #d9d9d91f;
    display: block;
    align-items: center;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;

  }
  
  /* Styles for the booking form */
  .booking-card {
    text-align: left;
  }
  
  .personal-information {
    margin-top: 25px;
  }
  
  .course-section {
    margin-top: 50px;
  }
  
  /* Additional CSS for the form inputs (you can modify as needed) */
  .form-control {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius:7.5px !important;
  }
  
  
  .booking {
    background-size: cover;
    background-position: center;
  }
  
  .booking-content {
    color: #fff;
    padding: 20px;
  }
  
  .booking-card {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  
  .information{
    margin: 50px;
  }
  
  .personal-section,
  .course-section {
    margin-bottom: 20px;
  }


  
  .buttons {
    margin-top: 20px;
  }



/* Apply the overflow: hidden; property to the parent element */
.select-container {
  overflow: hidden;
}
@media (max-width: 768px) {
  .background-image {
    display: none;
  }

  .booking-form-container {
    background-color: #d9d9d91a;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
  }

  .row-card-booking {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
  }

  /* Additional CSS for the form inputs (you can modify as needed) */
  .form-control {
    max-width: 100%; /* Adjust the max-width as per your design */
  }

  .information {
    width: 100%;
    margin: 20px; /* Adjust the margin as needed */
  }
}


