/* 1. Make body fill the screen and use flexbox to center everything */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;        /* stack card + footer vertically */
  justify-content: center;       /* center them vertically */
  align-items: center;           /* center them horizontally */
  background: #f7f8fa;
  font-family: Arial, sans-serif;
  color: #333;
}

/* 2. The card container */
.container.wrap {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 3. Logo styling */
.header .logo img {
  max-width: 200px; /* adjust as needed */
  display: block;
  margin: 0 auto 30px;
}

/* 4. Center section (where the login button is) */
section.center {
  text-align: center;
  margin-bottom: 20px;
}

/* 5. Button styling */
section.center .button {
  display: inline-block;
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

/* 6. Footer styling */
footer.container {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

/* 7. Footer link color (also #ff4500 for consistency) */
footer.container a {
  text-decoration: none;
}

footer.container a:hover {
  text-decoration: underline;
}
