


.tagline {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.desc {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.subtitle {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.input-hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.preview-text {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Form Containers */
/* main {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
} */

.form-card,
.login-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 700px;
}

.login-card {
  max-width: 400px;
  text-align: center;
}

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

.login-logo {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem auto;
}

/* Sections & Form Groups */
.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}

.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Inputs & Elements */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}

/* Buttons */
.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
}

.btn-primary:disabled {
  background-color: #999;
  cursor: not-allowed;
}

.submit-more-wrapper {
  margin-top: 1.5rem;
}

.submit-more-wrapper .btn-primary {
  display: inline-block;
  width: auto;
  text-decoration: none;
}

.btn-add-link {
  background: none;
  border: none;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.btn-remove {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.7;
}

.btn-remove:hover {
  opacity: 1;
  color: var(--color-error);
}

/* Dynamic Rows */
.member-row,
.link-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  align-items: center;
}

.group-members {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: #f1f3f5;
  border-radius: var(--border-radius);
}

.group-members.visible {
  display: block;
}

/* File Uploads */
.file-upload {
  border: 2px dashed var(--color-border);
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--border-radius);
  background-color: #fafafa;
}

.file-upload p {
  margin: 0 0 1rem 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-align: left;
}

.alert-error {
  background-color: var(--color-error-bg);
  color: var(--color-error);
  border: 1px solid #f5c6cb;
}

/* Footer */
.page-footer {
  text-align: center;
  padding: 2rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--color-border);
  margin-top: 2rem;
}
