@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&disp');
*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
body{
  background: rgba(0,0,0,0.04);
}
.cont h1{
  text-align: center;
  font-family: cursive;
}

.cont{
  position: absolute;
  top:20%;
  width: 30%;
  height: auto;
  background: transparent;
  padding: 25px;
  margin: 10px 15px;
  box-shadow: -3px 2px 2px rgba(0, 0.2, 0.2);
  border-radius: 4px;
}


.cont input{
  display: block;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 20px;
  border: 2px solid #ccc;
  border-radius: 25px;
  outline: none;
  font-size: 15px;
}

.imaj{
  float: right;
  padding: 50px;
}
.cont input[type="submit"]{
  color: #fff;
  background: #673ab7;
  font-size: 16px;
  transition: .5s;
}
.cont input[type="submit"]:hover{
  background: #ff0057;
  border: 2px solid #ff0057;
}
