header {
  margin: 3rem 0 2rem 0;
}

header img {
  max-width: 16rem;
}

.content {
  max-width: 60rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.content h1,
.content h3 {
  text-align: center;
}

.content h3 {
  font-size: 1.6rem;
  line-height: 1.5;
}

.booking-form {
  width: 60%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

@media (max-width:500px) {
  .booking-form {
    width: 100%;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  font-size: 1.6rem;
}

.form-group input,
.form--upload-file {
  border: 2px solid var(--white);
  padding: 1rem 1rem;
  background: none;
  border-radius: 0.5rem;
  outline-offset: 2px;
  caret-color: var(--white);
  color: white;
}

.form-group input:focus,
.form-group input:hover,
.form--upload-file:hover,
.form--upload-file:focus {
  outline: 2px solid var(--white);
}

.form--upload-file {
  cursor: pointer;
}

.form--upload-file::before {
  content: "";
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.5);
}

.form--upload-file.dragover::before {
  opacity: 1;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group--notes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  display: none;
}

.form--upload-file+.form-group--notes {
  display: flex;
}

.form--upload-file {
  border: 2px dashed var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;

  position: relative;
}

input[type="file"] {
  display: none;
}

.icon--upload {
  width: 4rem;
  background-color: var(--neutral-700);
  padding: 0.7rem;
  border-radius: 0.7rem;
}


.avatar {
  border: 2px solid var(--white);
  border-radius: 1.2rem;
  width: 6rem;
  margin-bottom: 1rexm;

}

.btns-control-avatar {
  display: flex;
  gap: 2rem;

  z-index: 200;
}