/* Login Layout — Minimal styles for login pages */

:root {
  --st-page-bg: #000914;
  --st-text-muted: #aab7c9;
}

body {
  min-height: 100vh;
  background-color: var(--st-page-bg);
  font-family: "General Sans", "Helvetica Neue", Arial, sans-serif;
}

body.split-test-body {
  min-height: 100vh;
  background-color: var(--st-page-bg);
  font-family: "General Sans", "Helvetica Neue", Arial, sans-serif;
}

.st-wrapper {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Header */
.st-header__inner {
  gap: 48px;
  max-width: 100%;
  background: #78afe62e;
  border: 1px solid rgba(170, 205, 240, 0.45);
  border-radius: 8px;
  padding: 14px 26px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.st-header__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.st-header__support {
  gap: 16px;
  font-size: 14px;
}

.st-header__support .st-label,
.st-header__support a {
  color: rgb(164 185 211);
  text-decoration: none;
}

.st-header__support a:hover {
  text-decoration: underline;
}

/* Footer */
.st-footer__copy,
.st-footer__copy a,
.st-footer__link {
  color: rgb(164 185 211);
  font-size: 13px;
  text-decoration: none;
}

.st-footer__copy {
  margin: 0;
}

.st-footer__copy a:hover,
.st-footer__link:hover {
  text-decoration: underline;
}

/* Merchant Support (login.blade.php) */
.merchant-support-wrapper {
  text-align: right;
}

.merchant-support-info a {
  display: inline;
  margin: 0 10px;
}

.white-shade {
  color: #aab7c9;
}

.right-15 {
  margin-right: 15px;
}

#main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#content {
  flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .st-header__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between !important;
    gap: 12px;
    flex: 1;
    margin: 0 0.6rem;
    box-sizing: border-box;
    padding: 12px 16px;
  }

  .st-header__support {
    flex-direction: row;
    gap: 12px;
  }

  .st-header__support .st-label,
  .st-header__support .st-email {
    display: none;
  }
}
