/* FILE STRUCTURE:
1. custom properties
2. generic
3. project
3.1.  HEADER
3.2.  HERO
3.3.  CARDS
3.4.  ARTICLE
3.5.  CAROUSEL
3.6.  FAQ
3.7.  CTA
3.8.  FOOTER*/
/* custom properties */

:root{
    
    --clr-blue: hsl(235, 70%, 20%); /*alt: hsl(231, 32.2%, 23.7%)*/
    --clr-blue-light: hsl(235, 70%, 50%);
    --clr-orange: hsl(30, 100%, 50%); /* hsl(27, 100%, 51.8%) #FF770 */
    --clr-orange-light: hsl(30, 100%,60%); /* 255, 179, 109;*/
    --clr-orange-verylight: hsl(30, 100%,70%); /* 255, 179, 109;*/
    --clr-grey: 225, 225, 225;
    --clr-grey-light: 241, 241, 241;
    --shadow-s:
    inset 1px 1px 2px #ffffff30,
    1px 1px 2px #00000030,
    2px 2px 4px #00000015;
     --shadow-m:
    inset 2px 2px 4px #ffffff30,
    2px 2px 4px #00000030,
    4px 4px 8px #00000015;
     --shadow-l:
    inset 4px 4px 6px #ffffff30,
    4px 4px 6px #00000030,
    6px 6px 10px #00000015;

    font-size: 18px;
}
@media screen and (max-width:900px) {
  :root{
    font-size: 16px;
  }
  
}
@media screen and (max-width:400px) {
  :root{
    font-size: 14px;
  }
  
}
/* anek-latin-regular - latin */
@font-face {
  font-family: 'Anek Latin';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/anek-latin-v4-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/anek-latin-v4-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/anek-latin-v4-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/anek-latin-v4-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/anek-latin-v4-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/anek-latin-v4-latin-regular.svg#AnekLatin') format('svg'); /* Legacy iOS */
}
/* ---------------RESET---------------
https://piccalil.li/blog/a-more-modern-css-reset/ --*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  margin: 0;
  padding: 0;
}
html:focus-within{
  scroll-behavior: smooth;
}
/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  /*min-height: 100vh;*/
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}
br{
  margin-bottom: 1.5rem;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}



/* remove animations for people who turned them off */
@media (prefers-reduced-motion: reduce){
    *,*::before,*::after{
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* ---------------GENERIC-------------*/

html,
body{
    height: 100%;
    font-family: 'Anek Latin', sans-serif;
    

}
/* ----------------Utility classis----*/

.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;

}

.bold{font-weight: 700;}
.list-nostyle{
  list-style: none;
}
.noshow{
  display:  none !important;
}
.showflex{
  display: flex;
}



/* ---------------PROJECT-------------*/
body{
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* --------------HEADER---------------*/
header{
  z-index: 99;
  height: 5rem;
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  box-shadow: var(--shadow-s)/*0px 1px 3px rgba(115, 115, 115, 0.6)*/;
}
.header-logo img{
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
nav{
  max-width: 45%;
}
.show-computer-flex{
  display: flex;
}
.show-phone-flex{
  display: none;
}
#nav-burger{
  height: 48px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 
}
.nav-burger:hover{
  cursor: pointer;
}
#nav-burger-top{
  width: 40px;
  height: 6px;
  margin-bottom: 4px;
  background-color: var(--clr-blue);
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}
#nav-burger-center{
  width: 40px;
  height: 6px;
  margin-bottom: 4px;
  background-color: var(--clr-blue);
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}
#nav-burger-bottom{
  width: 40px;
  height: 6px;
  background-color: var(--clr-blue);
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}
.nav-burger-top-open{
  transform: rotate(-45deg)translate(-7px,7px);
}
.nav-burger-center-open{
  opacity: 0;
}
.nav-burger-bottom-open{
  transform: rotate(45deg)translate(-6px,-7px) ;
}
.burgermenu{
  position:fixed;
  top: 5rem;
  right: -200%;
  list-style: none;
  transition: all 0.2s ease-in-out;
}
.showmenu{
  right: 2rem;
}

.menulink{
  width: 300px;
  /*background-color: var(--clr-orange);*/
  background: linear-gradient(150deg,var(--clr-orange) 30%, var(--clr-orange-light) 67%, var(--clr-orange) 100%);
  box-shadow: var(--shadow-s);
  border-radius: 5px;
  margin-block: 5px;
  display: flex;
  cursor: pointer;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.menuitem:hover{
  transform: translateX(0.5rem);
}
.menulinka{
  text-decoration: none;
  color:#000;
  width: 100%;
  height: 3rem;
  padding-left: 1rem;
  display: flex;
  align-items: center;

}
.menulink:hover{
  cursor: pointer;
  font-size: 1.1rem;
}
.menulink a:hover{
  cursor: pointer;
  font-size: 1.1rem;
}
.submenuitem{
  transition: all 0.2s ease-in-out;
  background: #ffa557;
  background: linear-gradient(150deg,var(--clr-orange-light) 23%, var(--clr-orange-verylight) 66%, var(--clr-orange-light) 90%);
  box-shadow: var(--shadow-s);
  border-radius: 5px;
}
.submenuitem a{
  margin-left: 1rem;
}
.pcsubmenulink{
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-inline: 1rem;
  width: 100%;
  height: 4rem;
}
.submenuitem:hover{
  transform: translateX(0.5rem);
}
.pcmenu{
  list-style: none;
  justify-content: space-between;
}
.pcmenu li{
  display: flex;
  justify-content: center;
  align-items: center;
}

#pcsubmenu{
  list-style: none;
  position: absolute;
  top: 5rem;
}
.pcmenulink{
width: 280px;
margin-block: 5px;
padding: 0.5vh;
cursor: pointer;
}
#servicepcmenuheader{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.pcmenulink a{
text-decoration: none;
}
.servicemenutext{
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out;  
}
.servicemenutext:hover{
  font-size: 1.1rem;
}
.hook{
  width: 1rem;
  height: 1rem;
}
.hook-open{
  transform: rotatex(180deg); 
}
.pcmenulink a:hover{
  font-size: 1.1rem;
}
@media screen and (max-width: 1350px)
{
  nav{
    max-width: 65%;
  }
}
@media screen and (max-width: 1300px)
{
  .header-phone{
    display: none;
  }
}
@media screen and (max-width: 880px) {
  .show-computer-flex{
    display: none;
  }
  .show-phone-flex{
    display: flex;
  }
   .header-phone{
    display: block;
  }
}
@media screen and (max-width: 600px){
  .header-phone{
    display: none;
  }
} 
@media screen and (max-width: 450px){
  .menulink{
    width: 98vw;
  }
  .header-phone{
    display: none;
  }
  .showmenu{
  right: 1vw;
}
} 

/* --------------HERO-----------------*/
.page-h1{
  display: flex;
  flex-direction: column;
  text-align: justify;
  margin-top: 5rem;
  margin-inline: 2vw;
  padding-inline: 4vw;
  max-width: 1200px;
  background-color: white;
  justify-content: center;
  align-items: center;
}
.page-h1 h1{
  text-align: center;
  padding-top: 2rem;
  margin-bottom: 1rem;
}
.page-h1 > p{
  padding-top: 1rem;
  padding-bottom: 2rem;
}
#hero{
  margin-top: 5rem;
  display: flex;
  background-image: url("/img/hero_back_small.avif");
  background-position: 50% 50%;
  background-size: cover;
  flex-wrap: nowrap;
  align-items: center;
}
.herocontent{
  background-color: rgba(255, 255,255, 0.8);
  width: max(60%, 800px);
  padding-block: 5rem;
  padding-inline: 8vw;
  color: var(--clr-blue);
}
.herocontent h1{
  font-size: 3.5rem ;
  margin-bottom: 1rem;
}
.herocontent h2{
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: start;
}
.hero-list{
  list-style-image: url('/img/check_16.png');
  margin-left: 1.5rem;
}
@media screen and (max-width: 1320px)
{
  .herocontent{
    padding-block: 6rem;
    padding-inline: 6vw;
  }
  .page-h1{
  padding-inline: 2vw;
}
}
@media screen and (max-width: 900px)
{
.herocontent{
  width: 100%;
}
.page-h1{
  display: flex;
  flex-direction: column;
  text-align: justify;
  margin-top: 5rem;
  max-width: 1200px;
  background-color: white;
  justify-content: center;
  align-items: center;
}
.page-h1 > h1{
  padding-top: 2.5rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.page-h1 > p{
  text-align: left;
}
}
@media screen and (max-width: 600px)
{
  .herocontent{
    padding-block: 9vh;
    padding-inline: 3vw;
  }
 .herocontent h1{
  margin-bottom: 1rem;
}
.herocontent h2{
  margin-bottom: 1rem;
  
}
}


/* --------------MAIN-----------------*/
main{
  max-width: 1200px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: start;
}
h1{
  font-size: 2.5rem;
}
h2{
  font-size: 1.75rem;
}
h3{
  font-size: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  width: 100%;
}
h4{
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  width: 100%;
}
/* --------------CARDS----------------*/
.cards{
  max-width: 100%;
  text-align: justify;
  justify-content: space-evenly;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-top: 2vh;
}
.card{
  display: grid;
  padding: 1rem;
  grid-template-rows: 90px 6.5rem auto;
  grid-template-columns: auto;
  grid-template-areas: "todologo" "todotitle" "tododescription" ;
  border-radius: 0.5rem;
  flex-direction: column;
  align-items: top;
  width: 400px;
  margin-inline: 2vw;
  margin-block: 2vh;
  background: linear-gradient(150deg,rgba(225, 225, 225, 1) 23%, rgba(255, 255, 255, 1) 66%, rgba(225, 225, 225, 1) 90%);
  box-shadow: var(--shadow-s);
}
.card h3{
  color: var(--clr-blue);
  grid-area: todotitle;
  text-align: left;
}
.card h3 span{
  font-size:1.5rem;
  color: var(--clr-orange);
}
.card img, svg{
  margin-block: 4vh;
  align-self: center;
  justify-self: center;
  grid-area: todologo;
}
.card p{
  grid-area: tododescription;
  text-align: start;
  line-height: 1.5rem;
}
@media screen and ( max-width : 900px) {
  .card{
    grid-template-rows: 90px 5.8rem auto;
  }
}
@media screen and ( max-width : 830px) {
  .card{
    width: 100%;
    padding-inline: 2vw;
    grid-template-rows: auto auto;
    row-gap: 1vh;
    grid-template-columns: 90px auto;
    grid-template-areas: "todologo todotitle""todologo tododescription" ;
  }
  .card img, svg{
  margin-block: 1vh;
}
}
@media screen and ( max-width : 750px) {
  .card{
    grid-template-rows: auto auto;
  }
  .card img, svg{
  margin-block: 1vh;
}
}
@media screen and ( max-width : 450px) {
  .card{
    width: 100%;
    padding-inline: 2vw;
    grid-template-rows: 90px 5.8rem auto;
    grid-template-columns: auto;
  grid-template-areas: "todologo" "todotitle" "tododescription" ;
  }
}

/* --------------ARTICLE--------------*/
article{
  display: flex;
  max-width: 1200px; 
  align-items: center;
  flex-direction: column;
  margin-block: 1rem;
}
.full-width{
 padding-inline: 2vw;
}
.full-height{
  height:100vh;
}
.a-white{
  background-color: white;
  width: 100%;
  padding-inline: 4vw;
  padding-block: 1rem;
}
.a-dark{
  background-color: var(--clr-blue);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-m);
  color: white;
  padding-inline: 4vw;
  padding-block: 1rem;
}
h2{
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}
.blog-content{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: justify;
  margin-bottom: 1vh;
}
.blog-content-left{
  max-width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  text-align: justify;
  margin-bottom: 1rem;
}

.blog-content-picture-side{
  width: 100%;
  display:inline block;
  gap: 2vw;
  text-align: justify;
  margin-bottom: 2vh;
}

.blog-image{
  display: flex;
  max-height: 500px;
  object-fit: cover;
  margin-block: 2vh;
  box-sizing: border-box;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-s);
}
.blog-image-left{
  display: flex;
  max-width: 360px;
  object-fit: cover;
  margin-block: 1vh;
  margin-right: 2vw;
  box-sizing: border-box;
  float: left;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-s);
}
.blog-image-right{
  display: flex;
  max-width: 360px;
  height:auto;
  object-fit: cover;
  margin-block: 1vh;
  margin-left: 2vw;
  box-sizing: border-box;
  float: right;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-s);  
}
.blog-image-noshadow{
  box-shadow: none !important; 
}
.blog-textcontent{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
ul{
  margin-block: 1rem;
  margin-left: 1rem;
  padding: 0;
}
li{
 line-height: 2.25rem;
}
#gotowissen-link{
  width: 100%;
  padding-bottom: 0;
}
@media screen and ( max-width : 1300px) {
  .blog-image{
    max-height: 360px;
  }
  .blog-image-left{
    max-width: 300px;
  }
  .blog-image-right{
    max-width: 300px;
  }
  li{
  line-height: 1.5rem;
}
}
@media screen and ( max-width : 900px) {
  article{
    width: 100%;
    grid-template-rows: 90px 4rem auto;
  }
  
}
@media screen and ( max-width : 650px) {
  .page-h1 > h1 {text-align: left;}
  h2{
    text-align: left;
  }
  .blog-content-picture-side{
  width: 100%;
  display:flex;
  flex-direction: column;
  gap: 2vh;
  text-align: justify;
  margin-bottom: 2vh;
}
  .blog-image{
    margin-inline: auto;
    object-fit: cover;
    max-width: 80%;
    max-height: 360px;
  }
  .blog-image-left{
    margin-inline: auto;
    object-fit: cover;
    max-width: 80%;
    max-height: 360px;
  }
  .blog-image-right{
    margin-inline: auto;
    object-fit: cover;
    max-width: 80%;
    max-height: 360px;
  }
  .blog-content{
    text-align: left;
  }
  .blog-content-left{
    text-align: left;
  }
  .blog-content-picture-side{
    text-align: left;
  }
}
/* -------------CAROUSEL--------------*/
.carousel{
  max-width: 1600px;
  text-align: justify;
  justify-content: space-between;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  margin-top: 2vh;
}
.carousel-item{
  display: flex;
  padding-inline: 3vh;
  padding-block: 1rem;
  border-radius: 10px;
  margin-inline: 1vw;
  margin-block: 2vh;
  background: linear-gradient(150deg,rgba(225, 225, 225, 1) 23%, rgba(255, 255, 255, 1) 66%, rgba(225, 225, 225, 1) 90%);
  box-shadow: var(--shadow-s);
  transition: all 0.2s ease-in-out;
}
.carousel-item:hover{
  transform: translateY(-0.5rem);
}
.carousel-item a{
  text-decoration: none;
  cursor: pointer;
  display: grid;
  grid-template-rows: 360px auto;
  grid-template-areas: "carologo" "carotitle";
  flex-direction: column;
}
.carousel-item img{
  max-width: auto;
  max-height: 360px;
  aspect-ratio: 30/35;
  grid-area: carologo;
  object-fit: cover;
  box-sizing: border-box;
  border-radius: 0.5rem;
}
.carousel-item h3{
  width: 100%;
  color: var(--clr-blue);
  grid-area: carotitle;
  padding-top: 2vh;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1400px) {
  .carousel-item img{
    max-height: 280px;
  }
  .carousel-item a{
    grid-template-rows: 280px auto;
  } 
}
@media screen and (max-width: 990px) {
  .carousel-item a{
    grid-template-rows: 250px auto;
  }
}
@media screen and (max-width: 900px) {
  .carousel{
  flex-wrap: wrap;
  justify-content: space-evenly;
}
  .carousel-item a{
    grid-template-rows: 280px auto;
    
  }
}
/* --------------FAQ------------------*/
.faq{
    list-style: none;
    margin-block: 1em;
    margin-inline: 0px;
    padding: 0%;
    display:flex;
    flex-direction: column;
    max-width: 1200px;
}
.faq-item{

    border-bottom: 2px solid black;
}
.faq-button{
    display: flex;
    background-color: white;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: start;
    width: 100%;
    border: none;
    padding-block: 1rem;
    padding-right: 1vw;
    padding-left: 0;
    font-weight: 600;
    cursor: pointer;
}
.faq-arrow{
    display: inline-block;
    background-color: black;
    width: 1.2em;
    height: 0.8em;
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%, 80% 0%,50% 65%,20% 0%);
    transition: all 0.4s ease;
}

.faq-arrow-rotated{
    transform: rotate(180deg);
}
.faq-answer{
    display: block;
    text-align: justify;
    line-height: 1.5;
    overflow: hidden;
    padding-bottom: 1em;
    transition: all 0.4s ease;
    height: auto;
}

.faq-answer.faq-noshow{
   display: hidden;
   height: 0px;
   padding-bottom: 0px;

}
@media screen and (max-width:600px) {
    .faq{
        width: 100%;
    }
    .faq-button{
        padding-inline: 0%;
    }
    .faq-arrow{
    width: 30px;

    }
    .faq-answer{
        width: 90%;
        text-align: left;
    }
}
/* --------------CTA------------------*/
.cta{
  width: 100%;
  min-width: 4rem;
  margin-top: 2rem;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}
.cta-phone{
  text-decoration: none;
  height: 4rem;
  width: 16rem;
  background: linear-gradient(150deg,var(--clr-orange) 30%, var(--clr-orange-light) 67%, var(--clr-orange) 100%);
  border-radius: 10px;
  display: flex;
  margin-top:0.5rem;
  margin-bottom:2rem;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: var(--shadow-s)/*1px 1px 3px 0px rgba(115, 115, 115, 0.6)*/;
}
.cta-phone:hover{
  height: 4.1rem;
  width: 16.3rem;
}
@media screen and (max-width: 900px) {
  .cta{
    text-align: center;
  }
}
/* --------------FOOTER---------------*/
footer {
  width: 100%;
  padding: 1rem;
  display: flex;
  background-color: var(--clr-blue);
  color: white;
  justify-content: space-between;
}
/*----------------LEGAL---------------*/
.h2-legal{
  width: 100%;
  text-align: start;
  margin-top: 2rem;
  margin-bottom: .25rem;
}
@media screen and (max-width: 900px) {
}
/*-------------Overview-------------*/
.overview-container{
 position:relative; 
 max-width: 1600px; 
 margin-top: 0;
}
.overview-section{
  padding-block: 1rem;
  position: relative;
  width: 100%;
  height: 60vh;
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:20px;
  align-items: start;
  overflow:scroll;
  padding-inline: 2vw;
}
.overview-column{
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content:start;
  align-items: center;
  flex-grow: 0;
  
}
.overview-section-fadeout{
  position:absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: block;
  background: linear-gradient(0deg, white 0%, hsla(0,0%,100%,0%) 100%);
}
.overview-article{
  position: relative;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  align-items:center;
  width: 400px;
  background-color: hsl(0, 0%, 90%);
  padding-inline: 1rem;
  padding-block: 1rem;
  box-shadow: var(--shadow-s);
  transition: all 0.2s ease-in-out;
}
.overview-article:hover{
  transform: translateY(-0.5rem);
}
.overview-article h3{
  margin-top: 0;
}
.oa-date{
  width: 100%;
  font-style: italic;
  font-size: 0.75rem;
  color: hsl(0, 0%, 40%);
  text-align: left;
  margin-bottom: 1rem;
}
.oa-picture img{
  max-width: 350px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
}
.oa-text{
  text-align: left;
}
@media screen and (max-width: 600px) {
  .overview-article{
    width: 300px;
}
.oa-picture img{
  width: 250px;
  
}
}

/*---------------------Log-In----------------------*/
.login{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: top;
}
.login form{
  display: flex;
  flex-direction: column;
  align-content: start;
}
.login-input{
  margin-bottom: 1rem;
}

