body{
  margin: 0;
  height: 100vh;
}
._row{
  display: grid!important;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  height: 100%;
}
.left{
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  margin: 3rem 0 0 3rem;
}
.right{
  grid-column: 2 / 2;
  grid-row: 1 / 2;
  display: flex;
  justify-content: end;
  align-items: end;
}
.logo{
  width: 260px;
}
h1{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin:1.5rem 0 1.5rem 0 ;
}
h4{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
}
h5 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}
h4,h5{
  margin-bottom: 3rem;
}
.phoneNumberRow{
  display: grid!important;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  justify-content: space-around;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.phoneNumberLeft{
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  display: flex;
  align-items: center;
  height: 100%;
}
.phoneNumberRight{
  grid-column: 2 / 2;
  grid-row: 1 / 2;
  display: flex;
  align-items: center;
}
.iconPhoneNumber{
  color: #1DA469;
  font-size: 18px;
  font-weight: 800;
  margin-right: .5rem;
}
.coming_soon_image{
  width: 75%;
}
.droitsReserves{
  position: absolute;
  bottom: 10px;
  width: 100%;
  font-family: sans-serif;
  text-align: center;
}
/* input */
*:focus {
    outline: none;
}
.bedrijfsmail[type="text"] {
  border-style: solid;
  border-width: 1px 0px 1px 1px;
  border-radius: .2rem 0 0 .2rem;
  border-color: #dfdede;
  box-sizing: content-box;
  font-size: 14px;
  /* width: 190px; */
  width: calc(70% - 70px);
  padding: .5rem 1rem .5rem .5rem;
}
.inputwrapper
{ 
  position: relative;
  right: 4px;
  display: inline-block; 
  align-items: center;
  justify-content: center;
  vertical-align: bottom;
  background-color: #CA2F29;
  font-family: sans-serif;
  color: white;
  border-style: solid;
  border-radius: 0 .2rem .2rem 0px;
  border-width: 1px 1px 1px 0px; 
  padding: .5rem 0rem .5rem 0rem;
  box-sizing: content-box;
  width: 70px;
}
input[type="submit"] {
  display: none;
}
label{
  display: flex;
  justify-content: center;
}
/* end input */

@media screen and (max-width: 768px) {

  .left{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    margin: 1.5rem;
  }
  .backgroundImg {
    background-image: url("assets/coming_soon.png");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: bottom right;
  }
  .display-culom-1{  
    grid-template-columns: 100% 0;
  }
  .logo{
    width: 230px;
  }
  .phoneNumberLeft,.phoneNumberRight{
    display: flex;
    justify-content: center;
    margin: 0;
  }
  .coming_soon_image {
    display: none;
  }  
}