/* Kleuren die we gaan gebruiken:
    -#8ed1f4
    -#d2d2d2
    -#055678
    -#d2d2d2
*/
    html {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      box-sizing: border-box;
    }

    *, *:before, *:after {
      box-sizing: inherit;
    }

    body {
      background-color: #f7f8f9;
      margin: 0;
      padding-top: 5rem;
    }
    section {
      column-count: 3;
      column-gap: 1rem;
      max-width: 1080px;
      width: 85%;
      margin: 0 auto;
      /* display: grid;
      grid-template-columns: repeat(3, 1fr);
      justify-items: center; */
    }
.hele-bericht{
      break-inside: avoid;
      display: inline-block;
}
    .berichtje {
      position: relative;
      background-color: #ffffff;
      border-radius: 10px;
      padding: 10px;
      box-shadow: 0px 15px 15px 0px rgba(255, 6, 6, 0.04);
    }

    .berichtje::before {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 10%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 1px solid transparent;
      border-right: 15px solid transparent;
      border-top: 15px solid #ffffff;
    }

    .tekst-icon {
      border-radius: 6px;
      border: 1px solid #055678;
      padding: 10px;
    }

    .tekst {
      color: #055678;
      /* margin-top: 40px; */
    }

    /* .logo {
      border-radius: 10px;
      width: 30px;
      height: auto;
      position: absolute;
      top: 25px;
    } */
    .naam{
      color: #055678;
      font-weight: 500;
    }
    .klas{
      color:#055678;
    }
    .klas{
      margin-top: -1rem;
      font-weight: bold;
    }
    @media (max-width:1024px) { 
      section{
      column-count: 2;
      }
    }
        @media (max-width:768px) { 
      section{
      column-count: 1;
      }
    }
    .foto{
      margin-bottom: 10px;
      border-radius: 5px;
      width: 100%;
    }
    .miniemen-logo{
      width: 70px;
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .knop{
      position: absolute;
      text-decoration: none;
      color: #055678;
      border: 2px solid #055678;
      border-radius: 5px;
      padding: 5px;
      top: 20px;
      right: 20px;
      font-weight: 600;
    }
    .knop:hover{
      background-color: #055678;
      color:#f7f8f9;
      transition: 1s;
    }
/* Styles voor de inlogpagina */
body {
  background-color: #fff;
}

img{
  max-width: 100%;
}

.inner-container{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display:flex;
  row-gap: 1.5rem;
  column-gap: 3rem;
  min-height: calc(100svh - 84px);
  align-items: center;
}

.container-hartjes, .container-login, .container-community{
  width: 33.33%;
}


.form-login{
  /* width: 420px; Waarom breekt dit uit de container? absolute vs relative units */
  background: #8dd1f5;
  border: 2px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(15px);
  color: #005577;
  border-radius: 10px;
  padding: 36px 30px;
}

header img{
  /* position: absolute; */
  width: 400px;
  max-width: 100%;
}

.form-login h1{
  font-size: 36px;
  text-align: center;
  margin-top: -6px;
  font-family: ubuntu;
}
.form-login .input-doos{
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0;
}
.input-doos input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 40px;
  font-size: 16px;
  color: #005577;
  padding: 20px 45px 20px 20px;
  border: 2px solid rgba(255, 255, blue, alpha);
  font-family: Roboto;
}
.form-login ::placeholder{
  color: #005577;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: -20px;
  opacity: 0;
}
.input-doos i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}
.form-login .knop{
  width: 100%;
  height: 45px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  cursor: pointer;
  font-size: 16px;
  color: #005577;
  font-weight: 600;
}



@media screen and (max-width: 768px) {

  .inner-container{
    flex-direction: column;
    justify-content: center;
    row-gap: 0;
    max-width: 420px;
  }

  .container-hartjes, .container-login, .container-community{
  width: 100%;
}

  .container-hartjes img, .container-community img{
  width: 150px;
  }

  header img{
    width: 250px;
  }
  
  .container-hartjes{
    display: flex;
    justify-content: end;
  }
  .container-community{
    display: flex;
    justify-content: start;
  }

  

}
