body {
  font-family: system-ui, sans-serif;
  background-color: #f5f6f7;
  margin: 0;
  padding: 2rem;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #003366;
}

.login-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 960px;
  margin: auto;
}

.login-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  flex: 1 1 280px;
  max-width: 300px;
  transition: transform 0.2s ease;
}

.login-card:hover {
  transform: translateY(-4px);
}

.login-card h2 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.login-card p {
  font-size: 0.95rem;
  color: #666;
}

.login-card a.button {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.6rem 1.2rem;
  background: #0b5ed7;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.login-card a.button:hover {
  background: #084ec1;
}

.home-btn-container {
  text-align: center;
  margin: 2rem 0 0;
}

.home-btn-container a {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: #003366;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.home-btn-container a:hover {
  background: #00529b;
}

.dcps-footer {
  background-color: #f8fafc;
  color: #444;
  font-size: 0.95rem;
  padding: 1rem 0 0;
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.dcps-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dcps-footer .footer-social img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.dcps-footer .footer-social img:hover {
  transform: scale(1.15);
}

.dcps-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.dcps-footer .footer-links a {
  color: #1c75bc;
  text-decoration: none;
}

.dcps-footer .footer-links a:hover {
  text-decoration: underline;
}

.dcps-footer .footer-disclaimer strong a {
  font-weight: 600;
  color: #444;
  text-decoration: none;
}

.dcps-footer .footer-disclaimer strong a:hover {
  color: #1c75bc;
}

@media (max-width: 600px) {
  .login-card {
    max-width: 100%;
  }
}