/* form.css - themed for guestbook */

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input, .form-group textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  border: 2px solid pink;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 16px;
  backdrop-filter: blur(5px);
  box-sizing: border-box;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

button {
  background: linear-gradient(45deg, #ff0080, #00ffff);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 149, 0.4);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* 50% opacity */
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.6);
}

#clearAll {
  background: linear-gradient(45deg, #ff4444, #cc0000);
  margin-left: 10px;
}

#clearAll:hover {
  box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6);
}

.guest-card {
  background: rgba(255, 0, 149, 0.2);
  border: 2px solid pink;
  border-radius: 15px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 0 20px rgba(255, 0, 149, 0.3);
  backdrop-filter: blur(10px);
}

.guest-card h3 {
  margin: 0 0 10px;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

.guest-card p {
  margin: 10px 0;
  line-height: 1.5;
}

.guest-card small {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .form-group input, .form-group textarea {
    font-size: 18px;
  }
}
