/* Share Page Styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fafafa;
  color: #333;
}

/* Header */
header {
  background: #ff7043;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.share-section {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

.share-section h1 {
  text-align: center;
  color: #ff5722;
  margin-bottom: 10px;
}

.share-section p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
}

.share-form {
  display: flex;
  flex-direction: column;
}

.share-form label {
  margin-top: 12px;
  font-weight: bold;
  color: #333;
}

.share-form input,
.share-form textarea {
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
}

.share-form button {
  margin-top: 20px;
  padding: 12px;
  border: none;
  background: #ff5722;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.share-form button:hover {
  background: #e64a19;
}
