/* Base styles */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #121212;
    color: #fff;
  }
  
  /* Layout containers */
  .fluid {
    min-height: 90vh;
    max-width: 100%;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
  }
  
  .fluid-form-box {
    width: 100%;
    max-width: 420px;
    background: #121212;
  }
  
  /* Logo styles */
  .brand {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .brand img {
    height: 40px;
    width: auto;
  }
  
  /* Form styles */
  .card-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* Typography */
  h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
  }
  
  p {
    color: #8391a2;
    margin: 0;
    font-size: 0.875rem;
  }  
    
  /* Links */
  a {
    color: #aab0f9;    
    text-decoration: none;
  }
  
  a:hover {
    color: #b7bcfa;
    text-decoration: none;
  }
  
  /* Utility classes */
  .pb-0 {
    padding-bottom: 0;
  }
  
  .gap-3 {
    gap: 1rem;
  }
  
  .text-center {
    text-align: center;
    margin: 0 auto;
  }
  
  @media (min-width: 992px) {
    .text-lg-start {
      text-align: left;
    }
  }
