/* 🌍 Global styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fdfdfd;
  margin: 0;
  padding: 0;
  color: #222;
}

/* 🌈 Banner */
.banner img {
  /* width: 100%;
  height: auto;
  display: block; */
  width: 100%;
  max-width: 1200px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.banner {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}



/* 👤 Profile picture */
.profile-pic {
  display: flex;
  justify-content: center;
  margin-top: -35px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.profile-pic img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* 📋 Main container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}

/* 📌 Header */
.header h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.header p {
  font-size: 14px;
  line-height: 1.6;
}

.header .highlight {
  background: yellow;
  padding: 6px;
  margin-top: 10px;
}

/* 🧾 Form styles */
.project-form {
  margin-top: 30px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row.full {
  flex-direction: column;
}

.field {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
}

textarea {
  height: 100px;
  resize: vertical;
}

/* ✅ Checkbox groups */
.checkbox-group label {
  font-weight: normal;
  font-size: 14px;
  margin-top: 5px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
  vertical-align: middle;
}

/* 📎 Misc */
.links {
  font-size: 13px;
  margin-top: 5px;
}

/* 🎨 Stylish button */
.button-wrapper {
  text-align: center;
  margin-top: 20px;
}

button {
  background: linear-gradient(135deg, #0c0c0b, #110207);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #b8aea6, #110e0f);
}

button:active {
  transform: scale(0.98);
}
.form-message {
  display: none;
  margin-top: 20px;
  text-align: center;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', Roboto, Helvetica, sans-serif;
  transition: all 0.3s ease;
}

.form-message.show {
  display: block;
  background-color: #e0ffe0;
  color: #2e7d32;
}

.form-message.error {
  background-color: #ffe0e0;
  color: #c62828;
}