* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Comic Neue', cursive;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #FFFC00;
}

.login-container {
  width: 360px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* ruimte tussen logo en tekst */
  font-size: 36px;
  font-weight: bold;
  color: black;
  margin-bottom: 40px;
}

.logo-img {
  height: 40px; /* vaste hoogte */
  width: auto;  /* breedte past zich aan om vervorming te voorkomen */
  object-fit: contain;
}

.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form input {
  height: 48px;
  padding: 0 15px;
  border: 1px solid #ccc;
  border-radius: 24px;
  font-size: 16px;
  transition: border 0.3s, box-shadow 0.3s;
}

.login-form input:focus {
  border-color: black;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  outline: none;
}

.login-form button {
  height: 48px;
  border: none;
  border-radius: 24px;
  background-color: black;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.login-form button:hover {
  background-color: #333;
}

.footer {
  margin-top: 30px;
  font-size: 14px;
  color: black;
}

.footer a {
  color: black;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Modal achtergrond */
.modal {
  display: none; /* standaard verborgen */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

/* Modal inhoud */
.modal-content {
  background-color: white;
  padding: 30px 40px;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.modal-content a {
  color: black;
  font-weight: bold;
  text-decoration: none;
}

.modal-content a:hover {
  text-decoration: underline;
}

#okButton {
  margin-top: 20px;
  padding: 10px 25px;
  border: none;
  border-radius: 20px;
  background-color: black;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

#okButton:hover {
  background-color: #333;
}
