.form-wrapper {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.form-header {
  background: #f68c2e;
  padding: 16px;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
}
.form-body {
  padding: 25px;
}
.photo-upload {
  text-align: center;
  margin-bottom: 25px;
}
.photo-upload label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.photo-upload input[type="file"] {
  display: none;
}
.photo-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #e5e7eb;
  border: 3px solid #3b82f6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #666;
  position: relative;
  overflow: hidden;
}
.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.photo-preview::after {
  content: "+";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 24px;
  height: 24px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 2px solid white;
}
.form-group {
  margin-bottom: 18px;
}
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #111827;
}
input, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
  background: #f9fafb;
  transition: border-color 0.3s;
}
input:focus, select:focus {
  outline: none;
  border-color: #3b82f6;
  background: #fff;
}
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #16a34a;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.submit-btn:hover {
  background: #15803d;
}