/* GiriÅŸ sayfasÄ±: tema (signin.css) iÃ§inden yalnÄ±zca kullanÄ±lan kurallar. */

@layer utilities {
  /* Formun Ã¼stÃ¼ndeki yuvarlak ikon */
  .signin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 28px;
  }

  /* SaÄŸdaki marka paneli (iki temada da dÃ¼z yeÅŸil) */
  .signin-hero {
    background: var(--color-primary);
  }
  .signin-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-lg);
    background: rgb(255 255 255 / 0.15);
    color: #ffffff;
    font-size: 20px;
  }

  .hero-lead {
    color: rgb(255 255 255 / 0.8);
  }
  .hero-foot {
    color: rgb(255 255 255 / 0.6);
  }
}

/* Oturumsuz ekranlar (giriÅŸ vb.): form + dar yeÅŸil marka paneli */
@layer utilities {
  .auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
  .auth-hero {
    display: none;
  }
  .auth-footer-mobile .app-footer {
    justify-content: center;
    text-align: center;
    border-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  @media (min-width: 1024px) {
    .auth-shell {
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    }
    .auth-hero {
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
    }
    .auth-footer-mobile {
      display: none;
    }
  }

  /* Ortada tek parça SVG (fabrika + orijinal dormek logosu): beyaz fon yok, gri tonlu; screen karışımıyla yeşil zemine "beyaz, yarı saydam" biner */
  .auth-hero-art {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
  }
  .auth-art {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    overflow: visible;
    mix-blend-mode: screen;
  }

  /* Yeşil panelin altındaki telif satırı */
  .app-footer.app-footer-hero {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border-top: 0;
    text-align: center;
    color: rgb(255 255 255 / 0.7);
  }
  .app-footer.app-footer-hero a {
    color: rgb(255 255 255 / 0.85);
  }
  .app-footer.app-footer-hero a:hover {
    color: #ffffff;
  }
}

@layer utilities {
  @media (min-width: 1024px) {
    .auth-hero-brand {
      padding: 32px 32px 0;
      align-self: flex-start;
    }
  }
  @media (min-width: 1280px) {
    .auth-hero-brand {
      padding: 48px 48px 0;
    }
  }
}
