body {
  margin: 0 !important;
  background-color: rgb(255, 255, 255);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}

.image-holder {
  position: relative;
  width: 100%;
  min-height: 200px;
  height: 35vh;
  overflow: hidden;
}
.image {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  object-fit: cover;
  object-position: 50% 20%;
}

.content-holder {
  position: absolute;
  width: 100%;
  top: 24%;
  z-index: 1;
}

.content {
  padding: 20px;
  margin: 0 auto;
  background-color: white;
  width: 85%;
  max-width: 700px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 1px 5px 10px -1px rgba(0, 0, 0, 0.8);
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 150px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  align-items: center;
}

label {
  font-weight: 600;
}

input {
  width: 60%;
  max-width: 350px;
  height: 25px;
  font-size: 18px;
  margin: 10px 0px 20px 0px;
  border-radius: 7px;
  padding: 7px 12px;
  border: 1px solid rgb(41, 41, 41);
}

button {
  min-width: 110px;
  min-height: 30px;
  font-size: 16px;
  padding: 10px;
  margin: 5px;
  border-radius: 8px;
  cursor: pointer;
  background: rgb(85, 85, 85);
  color: white;
  border: 1px solid gray;
  box-shadow: 1px 2px 4px -1px rgba(0, 0, 0, 0.8);
}
.confirm {
  min-height: 200px;
}
.loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
}
.z-index {
  z-index: 10;
  background: #00000061;
}

.info-bottom {
  position: fixed;
  bottom: 0;
  margin: 0 auto;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .image-holder {
    height: 32vh;
  }

  h1 {
    font-size: 24px;
  }

  input {
    width: 85%;
  }

  form {
    height: 135px;
  }
}
