body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f3f5;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/vecteezy_cute-dogs-seamless-pattern-dog-pattern-design_69146856.png');
  background-repeat: repeat;
  background-size: 300px;
  opacity: 0.1;  /* only the pattern is faint */
  z-index: -1;
}

header {
  background: linear-gradient(to right, #e49c2d, #f9b24e);
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.container {
  display: flex;
  justify-content: center;
}

.card {
  padding: 20px;         /* was 40px */
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.login-card h2 {
  color: #e49c2d;
}

label {
  display: block;
  margin-top: 20px;
}

input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #eef3ff;
}

.login-btn {
  margin-top: 30px;
  width: 100%;
  padding: 14px;
  background: #f9b24e;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.login-btn:hover {
  background: #e49c2d;
}

.forgot {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #e49c2d;
  text-decoration: none;
}

.login-card {
  width: 380px;
  padding: 30px;
}

.logo {
  font-size: 30px;   /* make the text bigger */
  font-weight: bold;  /* optional, make it stand out */
  color: white;        /* optional, text color */
}

input, .login-btn {
  box-sizing: border-box; /* include padding and border in width */
}

/* Force solid white cards */
.card,
.login-card,
.welcome-card {
  background-color: #ffffff !important;
  opacity: 1 !important;
}
