/**
 * Try Page Styles
 * Preview setup page for monument professionals
 */

.try-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.try-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) var(--container-padding);
}

.try-container {
  width: 100%;
  max-width: 480px;
}

.try-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.try-header__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.try-header__subtitle {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

/* Form */
.try-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
}

.try-form__group {
  margin-bottom: var(--space-6);
}

.try-form__group:last-of-type {
  margin-bottom: var(--space-8);
}

.try-form__label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.try-form__input {
  width: 100%;
  padding: var(--space-4);
  font-size: var(--text-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
}

.try-form__input:focus {
  outline: none;
  border-color: var(--color-focus);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.15);
}

.try-form__input::placeholder {
  color: var(--color-stone-light);
}

.try-form__hint {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-top: var(--space-2);
  margin-bottom: 0;
}

.try-form__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.try-form__reassurance {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin: 0;
}

/* Family deflection note */
.try-note {
  background: var(--color-cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
}

.try-note p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.try-note strong {
  color: var(--color-text);
  display: block;
  margin-bottom: var(--space-2);
}
