/* Copyright (c) 2026, Stelden EA Ltd and contributors
   For license information, please see license.txt */

/* ── Full Background ── */
/* Body background is set to the full image via inline style in login.html */

.layout-full-background .login-content.page-card {
  max-width: 480px;
  margin: 8vh auto 4vh;
  background-color: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(2px);
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Single-column: no left panel */
.layout-full-background .login-grid {
  grid-template-columns: 1fr;
  min-height: unset;
}

.layout-full-background .login-left {
  display: none;
}

/* Show logo at top of form */
.layout-full-background .login-logo-top {
  display: block;
}

.layout-full-background .login-right {
  padding: 36px 40px 40px;
}

@media (max-width: 560px) {
  .layout-full-background .login-content.page-card {
    margin: 4vh 1rem 2vh;
  }
  .layout-full-background .login-right {
    padding: 24px 20px 24px;
  }
}
