html,
body {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

header {
  display: flex;
  flex-direction: column;
}

.header-top {
  background-color: #F2F2F2; 
  padding: 5px 20px;
  display: flex;
  justify-content: flex-end;
}

.header-bottom {
  background-color: #00a19a; 
  padding: 5px 20px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  position: relative;
}

.logo-container a {
  text-decoration: none;
}

.logo {
  width: 80px;
  height: auto;
  position: absolute;
  top: -40px; 
  margin-left: 200px;
}

.logo-container img:hover{
  height: auto;
  animation: swingRotate 5s ease-in-out infinite;
  transform-origin: center; 
}

@keyframes swingRotate {
  0% { transform: rotateZ(0deg); }      
  25% { transform: rotateZ(-5deg); }   
  50% { transform: rotateZ(5deg); }    
  75% { transform: rotateZ(-5deg); }   
  100% { transform: rotateZ(0deg); }
}

.site-name {
  margin-left: 290px; 
  color: black;
  font-family: 'boogaloo';
  font-size: 30px;
}

nav ul {
  list-style: none;
  display: flex;
  margin-right: 200px;
  padding: 0;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: #003634 ;
  font-weight: bold;
}

nav ul li a.highlight {
    background-color: #A7B949;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
  }
  
  nav ul li a.highlight:hover{
    background-color: #8e9f37; 
  }

.login a {
  text-decoration: none;
  color: black;
}

.login-button {
  width: 20px;
  height: auto;
  margin-left: 7px;
  margin-right: 220px;
}

.dropdown a:hover {
  color: white;
}

.dropdown-content a:hover {
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
  border-radius: 5px;
}

.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  color: black;
  font-family: 'lato';
  font-size: 12px;
}

.dropdown-content a:hover {
  background-color: #A7B949;
  border-radius: 5px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu:hover .dropdown-content {
  visibility: visible;
    opacity: 1;
  left: 100%; 
  top: 0;
}

.dropdown-submenu .dropdown-content {
  visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: white;
    min-width: 160px;
    transition: opacity 0.3s ease-in-out;
    z-index: 2;
}

.registratie-container {
  background-color: #f6f6f6;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 900px;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
}


.titel {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
  font-family: 'boogaloo';
  text-align: left;
}

.subtitel {
  font-size: 18px;
  color: #599d89;
  margin-bottom: -10px;
  font-family: 'lato';
  text-align: left;
}

.onderschrift {
    font-size: 12px;
    font-family: 'lato';
    text-align: left;
    margin-top: -10px;
    margin-bottom: 30px;
}

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

label {
  font-size: 16px;
  font-family: 'lato';
  text-align: left;
  margin-bottom: 5px;
  color: #000;
}

input {
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 16px;
  font-family: 'lato';
}

input::placeholder {
  color: #bfbfbf;
}


.privacy {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.privacy input[type="checkbox"] {
  margin-right: 10px;
}

.privacy a {
  color: #4caf50;
  text-decoration: none;
}

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



.stap-info {
  font-size: 14px;
  color: #000;
  margin-bottom: 20px;
  font-family: 'lato';
}

.verder-knop {
  padding: 10px 20px;
  background-color: #b0c85b;
  font-family: 'lato';
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  max-width: 200px;
  align-self: flex-end;
  text-align: center;
}

.verder-knop:hover {
  background-color: #9fb44f;
  font-family: 'lato';
}




select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

select:focus {
  outline: none;
  border-color: #ccc;
}






  .groen {
    background-color: #A7B949;
    height: 50px;
  }
  
  footer {
    background-color: #003634;
    padding-top: 50px;
    color: white;
    display: flex;
    justify-content:center;
    gap: 250px;
  }
  
  footer h3 {
    margin-bottom: -10px;
    font-family: 'boogaloo';
    font-size: 20px;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
    padding-bottom: 10px;
  }
  
  footer ul li {
    margin-bottom: 5px;
    font-family: 'lato light'
  }

  footer a{
    text-decoration: none;
    color: white;
  }
  
  footer a:hover{
    text-decoration: underline;
    color: white;
  }
  
  .donkergroen {
    background-color: #002422;
    height: 20px;
  }