body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto;
  background: radial-gradient(circle at top, #0b1020, #05070f 70%);
  color: #e6f1ff;
  overflow: hidden;
}
body .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
}
body .container form {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(120, 180, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(0, 140, 255, 0.08);
}
body .container form input {
  background: transparent;
  border: none;
  outline: none;
  color: #e6f1ff;
  width: 260px;
  font-size: 14px;
}
body .container form input::placeholder {
  color: rgba(230, 241, 255, 0.4);
}
body .container form button {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
body .container form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}
body .container .result {
  margin-top: 40px;
  width: 420px;
  padding: 18px;
  border-radius: 14px;
  background-color: rgba(10, 15, 30, 0.7);
  border: 1px solid rgba(100, 180, 255, 0.15);
  box-shadow: 0 0 30px rgba(0, 140, 255, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.02);
  animation: fadeIn 0.4s ease;
}
body .container .result p {
  margin: 10px 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(230, 241, 255, 0.85);
}
body .container .result p b {
  color: #7dd3fc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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