body {
  background-image: url('../media/roberto-nickson-emqnSQwQQDo-unsplash_dunkel.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Style the form */
form {
  margin: 50px auto;
  padding: 20px;
  width: 80%; /* Wider form */
  max-width: 600px; /* Increase max width */
}

/* Style the form content */
.form-content {
  overflow: hidden;
  clear: both;
}

/* Style the input fields */
button,
datalist,
fieldset,
input,
legend,
optgroup,
option,
output,
select,
textarea {
  padding: 10px;
  font-size: 1em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border: 1px solid #777;
  width: 100%;
  box-sizing: border-box;
}

/* Restrict resizing of the textarea */
textarea {
  resize: vertical; /* Only allow vertical resizing */
}

/* Style the fieldsets */
fieldset {
  background-color: #F6F5EF;
  padding: 20px;
  border: none; /* Remove border */
}

/* Style the labels */
label {
  font-size: 1em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: block;
  margin-bottom: 5px;
}

/* Style Buttons */
.back-buttons {
  margin-right: 20px;
  float: right;
  color: #648E8C;
  border-color: #648E8C;
  background-color: #F6F5EF;
  display: flex;
  justify-content: center;
}

.next-buttons {
  float: right;
  color: white;
  border-color: #648E8C;
  background-color: #648E8C;
}

.buttons-containers {
display: flex;
justify-content: center;
}

/* Style the error messages */
.error-text {
  color: #f00;
  display: block;
}

/* Style the header */
  header {
  font-size: 1em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  ul {
    list-style-type: none;
    margin: 0;
    padding: 20px;
    overflow: hidden;
    background-color: #F6F5EF;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
  }

  .BookNow {
    background-color: #648E8C;
    color: white;
    padding: 14px 16px;
  }

.BookNow:hover {
  background-color: #4d6e6c;
  }

/* Style the progress bar */
.container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto; /* Center the container */
  margin-top: 4em;
}

.container .steps {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.steps .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  color: #999;
  font-size: 22px;
  font-weight: 500;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #e0e0e0;
}

.steps .circle.active {
  border-color: #648E8C;
  color: #648E8C;
}

.steps .progress-bar {
  position: absolute;
  height: 4px;
  width: 100%;
  background: #e0e0e0;
  z-index: -1;
}

.progress-bar .indicator {
  position: absolute;
  height: 100%;
  width: 0%;
  background: #4070f4;
}

#confirmation {
text-align: center;
}

#confirmation img {
margin-top: 2em;
margin-bottom: 2em;
  }

.back-homepage a {
    color: black; /* Ensure visited links stay white */
  }

.back-homepage a:hover {
    color: rgb(38, 149, 123);
  }

.back-homepage a:active {
    color: black; /* Ensure active links stay white */
  }


/* Style the footer */
footer {
  background-color: #4A453A;
  font-size: 1em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  color: #FFFFFF;
  width: 100%;
  position: relative;
  left: 0;
  margin: 0;
  padding: 20px 0;
  box-sizing: border-box;
  }

footer a {
  color: white; /* Ensure visited links stay white */
  }

footer a:hover {
  color: rgb(38, 149, 123);
  }

footer a:active {
  color: white; /* Ensure active links stay white */
  }

.separator {
  width: 90%; /* Adjust the width as needed */
  margin: 20px auto; /* Center the line and add some vertical margin */
  border-top: 1px solid #2f2c25; /* Light gray color for the separator line */
  }

/* Media Queries for responsiveness */
@media (max-width: 600px) {
  form {
    padding: 15px;
    width: 90%;
    margin: 20px auto;
  }

  fieldset {
    padding: 10px;
    min-height: 500px;
  }

  button,
  datalist,
  fieldset,
  input,
  legend,
  optgroup,
  option,
  output,
  select,
  textarea {
    font-size: 1em;
    padding: 10px;
  }
}

