/* Form feedback messages and honeypot hiding */

@layer components {
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  .form-feedback {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  .form-feedback[hidden] {
    display: none;
  }
  .form-feedback--success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
  }
  .form-feedback--error {
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
  }
  .contact-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
}
