body {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url("./bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body * {
  box-sizing: border-box;
}
body .hidden-field {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
}
body label[for=real-input] {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  width: 100%;
  max-width: 450px;
  line-height: 1.1;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  border: 1px dashed black;
  background-color: white;
  cursor: pointer;
}
body form {
  display: flex;
  height: 100vh;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  margin: 0;
}
body .error-message {
  color: red;
  margin-bottom: 10px;
  text-align: center;
}
body .text-center {
  text-align: center;
}
body button {
  padding: 20px 90px;
  border: 1px solid black;
  background: none;
  text-transform: uppercase;
  background-color: white;
  cursor: pointer;
}
body button:hover {
  color: white;
  background: black;
}
body .image-type input {
  display: none;
}
body .image-type input:checked + label {
  border: 2px solid black;
  opacity: 1;
}
body .image-type label {
  display: inline-block;
  width: 200px;
  line-height: 40px;
  border: 2px solid transparent;
  background: white;
  opacity: 0.7;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
