.custom-form-container {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background-color: #f8f8f8;
}
.custom-form {
  width: 100%;
  max-width: 700px;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", sans-serif;
}
.form-image-top {
  text-align: center;
  margin-bottom: 30px;
}
.form-image-top img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.form-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-transform: uppercase;
}
.form-description {
  font-size: 16px;
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}
.custom-form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 6px;
  font-weight: 600;
}
.custom-form input,
.custom-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  background: #fafafa;
  transition: border 0.3s;
}
.custom-form input:focus,
.custom-form textarea:focus {
  border-color: #0073e6;
  outline: none;
}
.custom-form button {
  background-color: #0073e6;
  color: white;
  padding: 12px 20px;
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.custom-form button:hover {
  background-color: #005bb5;
}
