// CLI Version 1.0.2
// Component Version 1.0.0
.dry-formbuilder {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;

  .document {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  button[type='submit'] {
    align-self: flex-start;
    margin-top: 1rem;
  }
}

// ========================================
// Media Queries
// ========================================
// Adjusting desktop screens
@media (min-width: 1024px) {
}
// Adjusting  for tablet screens (between small tablets and desktops)
@media (max-width: 1023px) {
}
// Adjusting for smaller screens (small tablets and mobile)
@media (max-width: 768px) {
  .dry-formbuilder {
    max-width: 100%;
  }
}
// Adjusting  for smaller screens (mobile)
@media (max-width: 480px) {
  .dry-formbuilder {
    max-width: 100%;
  }
}
