@layer views.checklists-new {
  .new-checklist {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
  }

  .new-checklist h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
  }

  .new-checklist .subtitle {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-lg);
  }

  .new-checklist .hint {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-lg);
  }

  .new-checklist .checklist-form {
    width: 100%;
    max-width: 400px;
  }

  .new-checklist .title-input {
    width: 100%;
    padding: var(--spacing-md);
    font-size: var(--font-size-base);
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: var(--spacing-md);
  }

  .new-checklist .title-input:focus {
    outline: none;
    border-color: var(--color-primary);
  }
}
