html, body {
  height: 100%;
  margin: 0;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.full-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-container {
  max-width: 1100px;
  width: 100%;
}

.brand-box {
  text-align: left;
}

.brand-logo {
  width: 300px;
  max-width: 90%;
  height: auto;
  pointer-events: none;
}

.tagline {
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.login-box {
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 24px;
  max-width: 360px;
  width: 100%;
}

.btn-primary {
  background-color: #4db4ff;
  border-color: #4db4ff;
  font-weight: 600;
}

.footer-text {
  font-size: 11px;
  text-align: center;
  padding: 15px 10px;
  color: #555;
}

@media (max-width: 768px) {
  .d-md-flex {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem;
  }

  .brand-box {
    text-align: center;
  }
}