* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #0b4f8a,
    #2c7ac9,
    #4caf50
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  width: 100%;
  padding: 20px;
}

.card {
  background: #ffffff;
  max-width: 520px;
  margin: auto;
  padding: 40px 30px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

h1 {
  color: #0b4f8a;
  font-size: 26px;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.accent-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(
    to right,
    #0b4f8a,
    #e53935,
    #4caf50
  );
  margin: 25px auto;
  border-radius: 3px;
}

.contact {
  font-size: 15px;
  margin-bottom: 15px;
  color: #333;
}

.contact a {
  color: #2c7ac9;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

.tagline {
  font-size: 14px;
  color: #4caf50;
  font-style: italic;
  margin-bottom: 25px;
}

footer {
  font-size: 12px;
  color: #777;
}
