/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Body styling */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 20px;
}

/* Heading */
h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

/* Form row container */
.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Inputs */
input[type="text"],
input[type="email"] {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  min-width: 200px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
}

input:focus {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  background: #fff;
}

/* Button */
button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Responsive layout */
@media (max-width: 650px) {
  .form-row {
    flex-direction: column;
    align-items: stretch;
  }

  input,
  button {
    width: 100%;
  }
}
