/* Full-page gradient background */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, orange, red, black);
  font-family: 'Arial Black', sans-serif;
}

/* Center the section */
.contact.container {
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: white;
  text-align: center;
}

/* Header text */
.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* Input fields */
.contact input[type="email"],
.contact input[type="submit"] {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  outline: none;
}

/* Email input */
.contact input[type="email"] {
  background: #fff;
  color: #333;
}

/* Submit button */
.contact input[type="submit"] {
  background: linear-gradient(to right, orange, red);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}

/* Hover effect on button */
.contact input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 100, 0, 0.6);
}
