* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #992B21;
  box-shadow: inset 0 0 1280px rgba(0, 0, 0, 0.7);
  z-index: -1;
  /*Oorspronkelijke achtergrondafbeelding - vervangen door kleur owv traag laden*/
  /*inset doet de schaduw naar binnen vallen in plaats van naar buiten*/
  /*background: url('../resources/9.png') center / cover no-repeat fixed;*/
}

.kitten {
  position: fixed;
  bottom: 0;
  right: 4rem;
  Z-index: 0;
  width: 30%;
  height: auto;
}

.card {
  width: 100%;
  max-width: 400px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 12px;
  padding: 2rem;
  color: white;
  z-index: 1;
}

h2 {
  margin-bottom: 1.5rem;
  color: #ff6a00;
}

.field {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: .4rem;
  font-size: .875rem;
  color: #aaa;
}

input {
  width: 100%;
  padding: .65rem .9rem;
  background: #111;
  border: 1px solid #444;
  border-radius: 6px;
  color: white;
  font-size: 1rem;
}

input:focus {
  outline: none;
  border-color: #ff6a00;
}

button.btn-submit {
  width: 100%;
  padding: .75rem;
  margin-top: .5rem;
  background: #ff6a00;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

button.btn-submit:hover {
  background: #e05e00;
}

button.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.switch-link {
  margin-top: 1rem;
  text-align: center;
  font-size: .875rem;
  color: #888;
}

.switch-link a {
  color: #ff6a00;
  text-decoration: none;
}

.error-msg {
  margin-top: .75rem;
  padding: .6rem .9rem;
  background: #3a0000;
  border: 1px solid #ff4500;
  border-radius: 6px;
  color: #ffaa80;
  font-size: .875rem;
  display: none;
}

.error-msg.visible {
  display: block;
}