/* Algemene opmaak voor login container */
#div-c98cb70 {
  max-width: 400px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", sans-serif;
}

/* Titels en labels */
#div-c98cb70 label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

/* Inputvelden */
#div-c98cb70 input[type="text"],
#div-c98cb70 input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#div-c98cb70 input[type="text"]:focus,
#div-c98cb70 input[type="password"]:focus {
  border-color: #0073aa;
  outline: none;
}

/* Checkbox + label */
.login-remember {
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.login-remember input {
  margin-right: 6px;
}

/* Submit-knop */
#div-c98cb70 input[type="submit"] {
  width: 100%;
  padding: 14px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#div-c98cb70 input[type="submit"]:hover {
  background-color: #005a8c;
}

/* Alternatief veld en WPA hidden */
#altEmail_container {
  margin-top: 20px;
}

#altEmail_container input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.wpa_hidden_field {
  display: none !important;
}

/* Responsiviteit */
@media (max-width: 480px) {
  #div-c98cb70 {
    padding: 20px;
  }

  #div-c98cb70 input[type="submit"] {
    font-size: 0.95rem;
    padding: 12px;
  }
}
