/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@500&display=swap");



  

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff; 
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.container {
    display: flex;
    row-gap: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    color: #fff;
    overflow: hidden;
    position: relative; /* Toegevoegd voor positionering van absolute elementen */

  background-image: url('../image.jpg');
  background-position: center; /* Centreer de afbeelding */
  background-repeat: no-repeat; /* Voorkom herhaling */
}

@media (max-width: 768px) {
  .container {
    background-size: cover; /* Voor kleinere schermen */
  }
}

@media (min-width: 769px) {
  .container {
    background-size: cover; /* Voor grotere schermen */
  }
}


.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px); /* Vervagingseffect alleen op de afbeelding */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* Halfdoorzichtige zwarte overlay */
      z-index: 1; /* Zorg ervoor dat de overlay bovenop de achtergrondafbeelding staat */

}

  .content {
      position: relative; /* Zorgt ervoor dat z-index werkt */
      z-index: 2; /* Zorg ervoor dat de tekst bovenop de overlay staat */
      padding: 20px; /* Voeg wat ruimte toe rond de tekst */

    border-radius: 9px;
   background-color: rgba(0, 0, 0, 0.3); /* Halfdoorzichtige zwarte overlay */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Vervaging van de randen */

  /* Optioneel: Voeg extra stijlen toe om de tekst leesbaarder te maken */
  color: #fff; /* Witte tekst op de donkere achtergrond */
}




.container header {
font-family: 'Caveat', cursive;
    font-size: 60px;
    color: #fff;
    font-weight: 400;
    text-align: center;

text-shadow: 0 0 10px #474747;

    z-index: 2; /* Tekst bovenop de afbeelding */
}

.container p {
    font-size: 16px;
    font-weight: 400;
    max-width: 600px;
    text-align: center;
    z-index: 2; /* Tekst bovenop de afbeelding */
}

.email-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    width: 100%;
    z-index: 2; /* Formulier bovenop de afbeelding */
}

.email-content p {
    font-size: 13px;
    text-align: center; /* Nieuwe toevoeging: centreren van de tekst */
}
        .email-link {
            color: white;
            text-decoration: underline;
            font-weight: bold;
        }

.input-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    max-width: 360px;
    width: 100%;
}

.input-box img {
    float:left;
    border-radius: 4px;
    width: 130px;
}

.input-row {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
    width: 100%;
}

.input-row input {
    width: calc(50% - 5px); /* 50% breedte met een kleine marge tussen de velden */
}

.input-row input.captcha {
    width: 130px; /* Specifieke breedte voor captcha input */
}

.input-box textarea {
    width: 100%; /* Volledige breedte voor het tekstveld */
    padding: 10px;
    margin-top: 10px;

    outline: none;
    border: none;
    border: 1px solid #443f0e;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
    color: #fff;
    padding: 0 15px;
}

textarea::placeholder {
    color: #fff;
}


.input-box input {
    height: 100%;
    outline: none;
    border: 1px solid #443f0e;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
    color: #fff;
    padding: 0 15px;
}

.input-box input.button {
    cursor: pointer;
    color: #0d6a81; 
    background-color: #fff;
    transition: all 0.3s ease; /* Overgangsinstelling voor de verzendknop */
}

.input-box input.button:hover {
    background-color: #443f0e; /* Achtergrondkleur verandert bij hover */
    color: #fff; /* Tekstkleur verandert bij hover */
}

input::placeholder {
    color: #fff;
}

/* Specifieke stijl voor de <p> tag met class "special-text" */
.special-text p {
    font-size: 20px;
            font-weight: bold;
    color: darkgreen;
    max-width: 600px;
    text-align: center;

    z-index: 2; /* Tekst bovenop de afbeelding */
}

/* Specifieke stijl voor de <p> tag met class "ongeldige-captcha" */
.ongeldige-captcha p {
    font-size: 20px;
            font-weight: bold;
    color: red;
    max-width: 600px;
    text-align: center;
    
    z-index: 2; /* Tekst bovenop de afbeelding */
}

@media screen and (max-width: 300px) {
    .container header {
        font-size: 50px;
    }
}
