/* base.css */

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(270deg, #89f7fe, #66a6ff, #fbc2eb, #a6c1ee);
  background-size: 800% 800%;
  animation: bgScroll 20s ease infinite;
  color: #333;
  min-height: 100vh;
}

@keyframes bgScroll {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container, .form-container {
  padding: 30px;
  max-width: 800px;
  margin: 30px auto;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  animation: fadeIn 1s ease forwards;
}

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

h1, h2 {
  text-align: center;
  color: #444;
}

p {
  line-height: 1.8;
  font-size: 1.1em;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn, button {
  padding: 12px 24px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn:hover, button:hover {
  transform: scale(1.05);
  background-color: #005999;
}

textarea, input[type="text"], input[type="url"] {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: vertical;
  font-size: 1em;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .container, .form-container {
    padding: 15px;
    margin: 15px;
  }

  textarea {
    height: 80px;
  }

  h2 {
    font-size: 1.4em;
  }

  .btn, button {
    padding: 10px 18px;
    font-size: 1em;
  }
}