body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../img/Login_BG1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: aqua;
}

@media (max-width: 900px) {
  body {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
      url(../img/Login_BG_Potrait.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

a {
  text-decoration: none;
  color: aqua;
}

p {
  font-size: 20px;
}

#main-body {
  min-height: 50vh;
  border-radius: 30px;
  border: 2px solid #fff;
  min-width: 250px;
  padding: 30px;
  background: #b8b8b830;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.emergency-btn {
  position: absolute;
  right: 0;
  font-weight: 900;
  font-size: 20px;
  transition: 0.3s ease-in-out;
  background: transparent;
  text-shadow: 1px 1px 1px #000;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  color: #00aeff;
}

.emergency-btn:hover{
  cursor: pointer;
    box-shadow: 0 0 5px #00aeff;
    transform: scale(1.1);
}

h2 {
  font-size: 3vw;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  text-align: center;
}

h3 span {
  color: #000;
  font-weight: 999;
}

.part {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* BOOKING SECTION */

/* .book-div {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 0;
} */

/* .book-button {
  border: none;
  padding: 10px 90px;
  color: white;
  background-color: #218300;
  font-weight: bold;
  transition: 0.3s ease-in-out;
} */

.book-button:hover {
  transform: scale(1.05);
  border: none;
  background-color: transparent;
  color: #00aeff;
  box-shadow: 0 0 10px 0 rgba(0, 200, 255, 0.589);
}

#bookingForm {
  background: rgba(73, 72, 72, 0.387);
  /* Semi-transparent background */
  border-radius: 15px;
  padding: 20px 30px 80px 30px;
  width: 100%;
  max-width: 95%;
  animation: fadeIn 1.2s ease-in-out;
  box-shadow: 0 0 20px 0 #00796b68;
  /* height: 90%; */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#book-section {
  width: 50%;
  padding: 30px 7%;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media (max-width: 650px) {
  #book-section {
    width: 100%;
  }
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: aliceblue;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #007bff;
  border-radius: 5px;
  /* color: white; */
  outline: none;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: transparent;
}

.form-group input {
  font-weight: bold;
  color: aliceblue;
  background-color: transparent;
}

/* .form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 8px #f8b60043;
} */

.form-group textarea {
  resize: none;
  color: aliceblue;
}

#service {
  background-color: #01021e;
  color: aliceblue;
  font-weight: bold;
}

.submit-btn{
  display: block;
  font-weight: bold;
  width: 100%;
  background: #218300;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #007bff;
  color: black;
}

.close-div{
    position: inherit;
    width: 100%;
}


.close-link{
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 10px 15px;
    color: white;
    color: red;
    font-weight: 999;
    border: 1.5px solid red;
    border-radius: 15px;
    transition: .3s ease-in-out;
    text-shadow: .5px .5px .5px black;
}

.close-link:hover{
    background-color: red;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 5px red;
}