* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #FFa51f;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 900px;
}

h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.mouth-stack {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.mouth {
  width: 100%;
  height: auto;
  display: block;
}

.form-over-mouth {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5%;
}

textarea {
  width: 100%;
  height: 100%;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.6);
  color: #000;
  resize: none;
  outline: none;
}

textarea:focus {
  border-color: #e65c00;
  box-shadow: 0 0 8px #e65c00;
}

button {
  background-color: #ff751f;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 1rem auto 0 auto;
  display: block;
}

button:hover {
  background-color: #e65c00;
}

.terms {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: white;
  text-align: left;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.terms input {
  margin-right: 0.5rem;
}
