.text-input{
  width: 100%;
  max-width: 250px;   /* 👈 dit bepaalt hoe smal ze worden */
  margin: 10px auto;  /* centreert ze horizontaal */
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: white;
  outline: none;
  display: block;     /* nodig voor margin:auto */
}

.text-input::placeholder{ color: rgba(255,255,255,0.7); }

.error{
  color: #ff6b6b;
  margin: 10px 0 0;
}



.forgot-password {
    margin-top: 16px;
    text-align: center;
}

.forgot-password a {
    color: #499ca1;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.forgot-password a:hover {
    opacity: 1;
    color: #4bf4ff;
    text-decoration: underline;
}

#loginBtn {
    margin-top: 20px;
}

.text-input:focus {
    border-color: #4bf4ff;
}

.text-input:hover {
    border-color: rgba(75, 244, 255, 0.6);
}