/* Algemene instellingen */
body {
  margin: 0;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #f4f2ee;
  color: #404040;
}


.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo */
.logo-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo {
  height: 28px;
}

/* Login kaart */
.login-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 400px;
}

.login-card h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Formuliervelden */
form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

input[type="email"],
input[type="password"], input[type="text"]  {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  color: #404040;
}

input::placeholder {
  color: #b2b2b2;
}

/* Checkbox */
/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.checkbox-wrapper input[type="checkbox"] {
  accent-color: #404040;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: #b2b2b2;
}

/* Knop */
button {
  background-color: #404040;
  color: white;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
      width: 120px;
    height: 44px;
    font-family: helvetica;
    font-size: 14px;
}

button:hover {
  background-color: #333333;
}

/* Link onder formulier */
.forgot {
  margin-top: 1rem;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot a {
  color: #b2b2b2;
  font-size: 0.875rem;
  text-decoration: none;
}

.forgot a:hover {
  text-decoration: underline;
}


/* Responsiviteit */
@media (max-width: 480px) {
  .login-card {
    margin: 1rem;
    padding: 1.5rem;
  }

  .logo-wrapper {
    position: static;
    margin-bottom: 2rem;
    align-self: flex-start;
  }
}
