/* Shared styles for MOM-entum mini app */

:root {
  --teal: #26a69a;
  --teal-dark: #1f8a82;
  --indigo-soft: #556;
}

/* Background */
.bg-gradient {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(to bottom right, #f6faff, #eef3ff);
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Card */
.card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.card--center {
  text-align: center;
}

.card--wide {
  max-width: 520px;
}

.card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #223;
  margin-bottom: 8px;
}

.card__subtitle {
  font-size: 0.95rem;
  color: #556;
  margin-bottom: 26px;
}

.card__footer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #445;
}

.card__footer a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}

/* Form */
.form-group {
  margin-bottom: 18px;
  text-align: left;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334;
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccd2e0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
}

/* Buttons */
.button {
  padding: 14px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.button--primary {
  width: 100%;
  background: var(--teal);
  color: #fff;
  transition: background 0.2s;
}

.button--primary:hover {
  background: var(--teal-dark);
}

.button--secondary {
  width: 100%;
  background: transparent;
  color: #223;
  border: 1px solid #ccd2e0;
}

/* Star bullet (for reference; used in intake) */
.star-bullet {
  width: 18px;
  height: 18px;
}
