.manage-booking {
  background-image: url("../images/MANAGE-BOOKING-1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 60px;
  margin-top: 60px;
  align-items: center;
  margin: auto;
  justify-content: center;
  display: flex;
}

.manage-booking-content {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
}

.manage-booking-content-header {
  padding-top: 40px;
  padding-bottom: 40px;
}

.manage-booking-content-header h1 {
  text-align: end;
  color: #85080b;
}

.car-icon {
  text-align: end;
  transform: translateY(-50%);
}

.manage-booking-content-divider {
  position: relative;
}

.manage-booking-content-divider::before {
  position: absolute;
  width: 40%;
  display: block;
  content: "";
  border-block-end: 0;
  flex-grow: 1;
  right: 30px;
  border-block-start: 2px solid #85080b;
}

.manage-booking-guest-box button {
  background-color: #85080b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 600;
}

.manage-booking-existing-customer-box button {
  background-color: #85080b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 600;
}

.manage-booking-form-box {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.manage-booking-guest-box {
  display: flex;
  flex-direction: column;
  width: 60%;
  background-color: #430204;
  padding: 20px 20px;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.manage-booking-guest-box h1 {
  color: #85080b;
  font-size: 30px;
  font-weight: 600;
  text-align: start;
}

.manage-booking-existing-customer-box {
  display: flex;
  flex-direction: column;
  width: 40%;
  background-color: #dfd2d4;
  padding: 10px 20px;
  border-radius: 10px;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

.manage-booking-existing-customer-box h1 {
  color: #85080b;
  font-size: 18px;
  font-weight: 600;
  text-align: start;
  margin-bottom: 24px;
}

.manage-booking-input-box {
  margin-bottom: 1rem;
}

.manage-booking-forgot-password-box {
  margin-bottom: 1rem;
  text-align: start;
}

.manage-booking-forgot-password-box a {
  margin-bottom: 1rem;
  font-size: 14px;
  color: #007bff;
  text-decoration: underline;
}

.manage-booking-guest-reservation-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 14px;
}

.manage-booking-guest-name-box {
  margin-top: 10px;
  margin-bottom: 10px;
}

.manage-booking-guest-name-box {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.manage-booking-input-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.manage-booking-input-box label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: start;
  font-family: inherit;
}

.manage-booking-input-box input {
  border: none;
  font-size: 14px;
  padding: 12px 16px;
  font-style: normal;
  font-family: inherit;
  font-weight: 400;
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  color: #475569;
  display: block;
}

.manage-booking-input-box input:focus {
  border: #046bd2;
  box-shadow: none;
  outline: none;
  border-radius: 5px;
  color: #475569;
  border-style: dotted;
  border-width: thin;
}

@media (max-width: 425px) {
  .manage-booking-form-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .manage-booking-guest-box {
    width: 80%;
  }
  .manage-booking-existing-customer-box {
    width: 80%;
  }
  .manage-booking-guest-name-box {
    flex-direction: column;
  }
  .manage-booking-content-header h1 {
    text-align: center;
  }
  .manage-booking-content-divider::before {
    width: 80%;
  }
}
