/* forgot_password.css */
/* Container in dezelfde maat/positie als login/index */

.auth-container {
  width: 600px;
  max-width: 92vw;
  margin: 80px auto;
  background: rgba(255,255,255,0.96);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  box-sizing: border-box;
  text-align: center;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 18px 0;
}

/* Meldingsblok */
.notice {
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 8px;
  margin: 0 0 18px 0;
  line-height: 1.45;
}
.notice.success {
  background: #e7f6ee;
  color: #1b7848;
  border: 1px solid #c6ead7;
}
.notice.error {
  background: #fdecea;
  color: #b33a3a;
  border: 1px solid #f6c6c4;
}

/* Knoppenrij */
.btn-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn {
  display: inline-block;
  min-width: 150px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  transition: transform .04s ease, opacity .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn.primary { background: #0077cc; }
.btn.primary:hover { opacity: .9; }

.btn.light { background: #6fb7e6; }
.btn.light:hover { opacity: .92; }

/* Vlaggen rechtsboven */
.lang-selector {
  position: absolute;
  top: 16px;
  right: 16px;
}
.lang-selector img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-left: 6px;
  cursor: pointer;
  vertical-align: middle;
}
