
/* ===== PAGE TITLE ===== */

.primary-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

.camera-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ===== FLOATING INPUT ===== */

.form-field {
  position: relative;
  margin-bottom: 8px;
}

.form-field__input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #d1d5db;
  padding: 12px 4px;
  font-size: 16px;
  background: transparent;
  outline: none;
  font-family: var(--font-sans);
}

.form-field__input--shootkey {
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;

  max-width: 100%;
}

.form-field__input:focus {
  border-color: var(--msp-cyan);
}

.form-field__label {
  position: absolute;
  left: 4px;
  top: 12px;
  color: var(--text-secondary);
  font-size: 15px;
  transition: 0.2s ease;
  pointer-events: none;
}

.form-field__input:focus + .form-field__label,
.form-field__input:not(:placeholder-shown) + .form-field__label {
  top: -10px;
  font-size: 12px;
  color: var(--msp-cyan);
}

.form-field__error {
  font-size: 12px;
  color: var(--msp-error);
  margin-top: 6px;
  height: 16px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-field__error.active {
  visibility: visible;
  opacity: 1;
}

.form-field.is-error .form-field__input {
  border-color: var(--msp-error);
}

/* ===== CHECKBOX ===== */

.custom-checkbox {
  font-size: 14px;
  color: #4b5563;
}

.custom-checkbox a {
  color: var(--msp-navy);
  text-decoration: none;
}

.custom-checkbox a:hover {
  text-decoration: underline;
}

.custom-checkbox .form-check-input {
  margin-top: 0.2em;
}

/* ===== CARD ACTIONS — removed per design ===== */

@media (max-width: 576px) {
  .primary-title {
    font-size: 17px;
  }

  .subtitle {
    font-size: 12px;
  }

  .camera-icon img {
    height: 48px !important;
  }
}

.pose-topbar--logo-only {
  grid-template-columns: 1fr;
  justify-items: center;
}

.pose-topbar__logo {
  display: flex;
  justify-content: center;
}

.pose-topbar__logo img {
  height: 42px;
  max-width: 140px;
  object-fit: contain;
}

.pose-back-link {
  align-items: center;
  color: var(--text-secondary);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 4px;
  margin-bottom: 8px;
  justify-content: left;
  text-decoration: none;
  width: 100%;
}