/*
  CSS Styles for IT In Action and Sign Up pages in BayITOutsourcing.com
*/

/*
  Copyright (c) 2025 Bay IT Outsourcing
  All rights reserved.
  Created: 2025-10-06
*/

/** basic.css overrides **/

body {
  min-height:100vh;          /* let body grow when content taller */
}


/* allow .card overflow to be visible */
.card {
  overflow: visible; /* overrides overflow:hidden */
}

@media (max-height:90vh){
  /* when viewport is short, switch to top-aligned so page can scroll */
  body{ align-items:flex-start; }
}

p {
  margin-bottom: 1rem;
}

