* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('IF-whispy-golden-brown.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.modal {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 30px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .modal {
    width: 90%;
  }
}

.logo {
  max-width: 150px;
}

.title {
  color: #000;
  font-size: 32px;
  margin: 20px 0;
}

.description {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  text-align: left;
}

.second-paragraph {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: left;
}

.signup-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.signup-form input {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  outline: none;
  width: 100%;
}

.response {
  color: #000;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: left;
}

.mce_inline_error {
  color: red;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: left;
}

.button {
  background-color: #d4af37;
  border: none;
  border-radius: 5px;
  color: #000;
  font-size: 16px;
  padding: 10px;
  cursor: pointer;
  outline: none;
}

.button:hover {
  background-color: #c99a2e;
  transition: background-color 0.3s ease;
}
