/**
 * D2L Login Gate – bij binnenkomst (niet ingelogd)
 * Vriendelijke melding: Kom binnen / Doe mee
 */
.d2l-login-gate-wrap {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, #1b5e20 0%, #2e7d32 25%, #e8f5e9 100%);
  color: #1b5e20;
  box-sizing: border-box;
}

.d2l-login-gate-card {
  max-width: 400px;
  width: 100%;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.d2l-login-gate-title {
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1b5e20;
}

.d2l-login-gate-text {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.d2l-login-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.d2l-login-gate-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.d2l-login-gate-btn:active {
  transform: scale(0.98);
}

.d2l-login-gate-btn-primary {
  background: #2e7d32;
  color: #fff;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.4);
}

.d2l-login-gate-btn-primary:hover {
  background: #1b5e20;
  color: #fff;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.5);
}

.d2l-login-gate-btn-secondary {
  background: #fff;
  color: #1b5e20;
  border: 2px solid #2e7d32;
}

.d2l-login-gate-btn-secondary:hover {
  background: #e8f5e9;
  color: #1b5e20;
}
