/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');*/

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #0d1d3f, #2871bc);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.wrapper {
  padding: 20px;
  width: 100%;
  max-width: 700px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: fadeIn 1.2s ease-in-out;
}

h1 {
  font-size: 26px;
  color: #356a91;
  margin-bottom: 5px;
}

h2 {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 400;
}

.logo {
  width: 500px;
  margin-bottom: 20px;
}

.info p {
  line-height: 1.6;
  margin: 10px 0;
}

.links a {
  color:#2871bc;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links a:hover {
  color: #2871bc;
  text-decoration: underline;
}

footer {
  margin-top: 25px;
  font-size: 13px;
  font-weight:300;
  color: #888;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

#email {
  margin-top: 10px;
  font-weight: 500;
  color: #2871bc;
}

#email a {
  color: #2871bc;
  text-decoration: none;
}

#email a:hover {
  text-decoration: underline;
}