/* Extracted from login.html */

    /* V1: Full-bleed image, tagline bottom-left */
    .v1-brand-panel {
      flex: 1;
      background: #e8f0fa;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: calc(12vh + 25px) 24px 40px;
      position: relative;
    }

    .v1-image {
      width: 100%;
      max-height: calc(100vh - 240px);
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .v1-content {
      text-align: center;
      margin-top: 40px;
    }

    .v1-tagline {
      font-family: 'Caveat', cursive;
      font-weight: 500;
      font-size: 1.75rem;
      line-height: 1.4;
      color: #1e293b;
      margin: 0 0 10px 0;
      letter-spacing: 0.02em;
    }

    .v1-powered {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.75rem;
      color: #8896a6;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    @media (min-width: 768px) {
      .v1-brand-panel {
        display: flex;
      }
    }
  
