body {
  margin: 0;
  font-family: sans-serif;
  background: linear-gradient(135deg, #0f7c82, #0a5f63);
  color: white;
}

.center-wrap {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app {
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.moving {
  animation: move 2s infinite alternate;
}

@keyframes move {
  from { transform: translateX(-10px); }
  to { transform: translateX(10px); }
}

.card {
  background: white;
  color: black;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

input, select {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 10px;
}

button {
  width: 100%;
  padding: 12px;
  background: #0f7c82;
  color: white;
  border: none;
  border-radius: 10px;
}

.result-page {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  display:none;
  justify-content:center;
  align-items:center;
  background: rgba(0,0,0,0.7);
}

.result-box {
  background:white;
  color:black;
  padding:20px;
  border-radius:10px;
}

.popup {
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
}

.popup-box {
  background:white;
  color:black;
  padding:20px;
  border-radius:10px;
}

.email-box {
  display: flex;
  gap: 5px;
}

.help {
  font-size: 12px;
  margin-top: 10px;
}