/* Auth pages shared styles */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #6495ED;
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-x: hidden;
}

.home-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #0b1dae;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 14px 40px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.page-title {
  font-family: 'Fredoka One', cursive;
  font-size: 4rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 700px;
}

.form-label {
  font-family: 'Fredoka One', cursive;
  font-size: 2.2rem;
  color: #0000CD;
  min-width: 220px;
  text-align: left;
}

.form-input {
  flex: 1;
  background: #2E8BC0;
  border: 2px solid #1a5a8a;
  padding: 14px 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.7); }

.btn-dark {
  background: #0b1dae;
  color: #fff;
  border: none;
  padding: 16px 48px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  margin: 10px;
}

.btn-dark:hover { filter: brightness(1.15); }

.btn-light {
  background: #1E90FF;
  color: #fff;
  border: none;
  padding: 16px 48px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  margin: 10px;
}

.btn-light:hover { filter: brightness(1.15); }

.message {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  max-width: 600px;
  margin: 20px auto;
  line-height: 1.5;
}

.error-title {
  font-family: 'Fredoka One', cursive;
  font-size: 3.2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.success-mascots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 20px 0 30px;
}
.success-mascots img {
  max-width: 200px;
  height: auto;
}

@media (max-width: 700px) {
  .page-title { font-size: 2.8rem; }
  .form-label { font-size: 1.6rem; min-width: 140px; }
  .form-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .home-btn { font-size: 1.2rem; padding: 10px 24px; min-width: 120px; }
  .btn-dark, .btn-light { font-size: 1.3rem; min-width: 180px; padding: 12px 32px; }
  .error-title { font-size: 2.2rem; }
  .success-mascots { flex-direction: column; }
}
