/* Login landing page (HDC-style layout) */

html, body {
  height: 100%;
}

body.hdc-login-page {
  background: #fff;
}

.hdc-login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
}

.hdc-login-panel {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
}

.hdc-left {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.hdc-logo {
  width: 100%;
  max-width: 720px;
  height: auto;
}

.hdc-divider {
  width: 1px;
  align-self: stretch;
  background: #d9d9d9;
  margin: 0 18px;
}

.hdc-right {
  flex: 0 0 420px;
  max-width: 420px;
  padding: 12px;
}

.hdc-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hdc-provider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 14px 0 10px;
}

.hdc-provider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.hdc-provider:hover {
  border-color: #cfcfcf;
  text-decoration: none;
}

.hdc-provider-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hdc-provider-badge {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e6e6;
  background: #f8f9fa;
}

.hdc-provider-label {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hdc-links-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  margin-top: 6px;
}

.hdc-links-row a {
  font-weight: 600;
}

.hdc-hr {
  border: 0;
  border-top: 1px solid #d9d9d9;
  margin: 14px 0;
}

.hdc-help-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 12px;
}

.hdc-help-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e6e6;
}

.hdc-help-text {
  font-size: 0.98rem;
}

@media (max-width: 992px) {
  .hdc-login-panel {
    flex-direction: column;
  }

  .hdc-divider {
    width: 100%;
    height: 1px;
    margin: 16px 0;
  }

  .hdc-right {
    flex: 0 0 auto;
    max-width: 520px;
    width: 100%;
  }

  .hdc-provider {
    height: 140px;
  }
}
