@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(270deg, #070d2b 20%, #1e2c55 50%, #070d2b 80%);
  margin: 0;
  padding: 0;
  color: #bcbdc4;
}

.container {
  max-width: 520px;
  margin: 60px auto;
  background: #101528;
  padding: 35px 45px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.8s ease-in-out;
  border: 1px solid #2e3c6d;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
  background: linear-gradient(180deg, #e0e0e0 0%, #a6a6a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-group {
  margin-bottom: 22px;
  position: relative;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #d6d7dc;
  font-size: 14px;
  letter-spacing: 0.5px;
}

input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #3a4a78;
  border-radius: 10px;
  background-color: #1a213d;
  color: #e0e0e0;
  font-size: 15px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: #8f95a5;
  opacity: 0.85;
  font-style: italic;
}

input:focus,
textarea:focus {
  border-color: #bcbdc4;
  background-color: #222a47;
  outline: none;
  box-shadow: 0 0 0 2px rgba(188, 189, 196, 0.3);
}

textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

button[type="submit"] {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: linear-gradient(180deg, #d3d4d8 0%, #a7a9af 100%);
  color: #101528;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

button[type="submit"]:hover {
  background: linear-gradient(180deg, #ffffff 0%, #b0b0b0 100%);
  transform: translateY(-1px);
}

.alert-message.success {
  display: none;
  margin-top: 25px;
  padding: 20px;
  background-color: #bcbdc4;
  color: #070d2b;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}