
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.logo
{ background: url(../media/preview.png);
  position: absolute;
  padding:20px;
}
.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url('../media/menu.png');
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}
.toggle.active
{
  background: url('../media/close.png');
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}
.showcase
{background: url(../media/laptop.jpg) no-repeat center;
  background-size: cover;
  min-height: 100vh;
  position: absolute;
  right: 0;
  width: 100%;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgb(242, 235, 235);
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right:300px;
}

.form-container {
  display:flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: black;
   z-index: -8;
   max-width: 1140px;
   margin:auto;
   padding:0 1rem;
   background-color: rgba(0,0,0,0.5);
   width: 100%;
   height:100%;
   box-shadow: px 3px 4px #fff;
}

.menu 
{
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  background-color: rgb(205, 200, 200);
  justify-content: center;
  align-items: center;
  
}
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 24px;
  color: #010101fb;
  
}
.menu ul li a:hover
{
  color: red; 
 
}

@media (max-width: 991px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
}

















































