
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  *, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    }
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;
  
}
.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;
  }

  

}