html {
  font-size: 16px;
  height: 100%;
  margin: 0;
}
body {
  margin: 0;
  padding: 0;
  background-color: #efefda;
  font-family: 'PostGrotesk-Book', sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: black;
  height: 100%;
}

#app {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.center-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.67;
  font-weight: normal;
}

.logo img {
  max-height: 60px;
}

.container {
  padding: 20px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  width: 100%;
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #efefda;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.logo img {
  max-height: 60px;
}

.address {
  text-align: right;
}

form {
  border: 1px solid #ccc;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 150px;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: 10px;
}

.form-header h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

label {
  margin-bottom: 0rem;
}

.text-color-brown {
  color: #a51c30;
}

h3 {
  position: relative;
  margin-top: 2rem;
  color: #a51c30;
  font-weight: 700;
}

.btn-submit {
  color: #fff;
  background-color: #a51c30;
  border-color: #a51c30;
}

.btn-submit:hover {
  color: #fff;
  background-color: #a51c30;
  border-color: #fff;
}

.btn-submit:focus {
  color: #fff;
  background-color: #a51c30;
  border-color: #fff;
}

#popupContainer {
  position: fixed;
  top: 1%;
  left: 1%;
  width: 98%;
  height: 98%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOut 5s forwards;
}

#myImage {
  max-width: 100%;
  max-height: 100%;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.center-form {
  opacity: 0;
  animation: formAppear 4s forwards;
}

@keyframes formAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Ensure form elements are clickable even when the image is hidden */
.form-content {
  pointer-events: auto;
}
