* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  background-color: #1b5e20;
  background-image: url('../assets/images/image.webp'), linear-gradient(135deg, rgba(27,94,32,0.7), rgba(76,175,80,0.7));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}



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

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.logo {
  width: 95%;        /* default size */
  height: auto;       /* maintain aspect ratio */
  display: block;     
  margin: 0 auto 15px; /* center horizontally and add spacing below */
  object-fit: contain; /* ensures image scales properly */
}

/* Responsive adjustments */
@media (max-width: 500px) {
  .card {
    padding: 20px;
  }

  h1 {
    font-size: 1.5em;
  }

  .logo {
    width: 95%; /* smaller on mobile */
  }
}


h1 {
  color: #2a722e;
  font-size: 1.5em;
}

.info {
  margin-top: 15px;
}

.info p {
  margin: 8px 0;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.info strong {
  color: #2b742f;
}

a {
  color: #1565c0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 20px;
  width: 100%;
  transition: background 0.3s ease;
}

button:hover {
  background: #1b5e20;
}

.error {
  background: #ffcdd2;
  color: #b71c1c;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}
