@charset "utf-8";
/* CSS Document */
/* Card style */
.card {
  max-width: 600px;
  background: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Header */
.card h2 {
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

/* Form layout */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

/* Inputs */
input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 5px rgba(102,126,234,0.3);
}

/* Button */
button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #667eea;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #5a67d8;
}

