*{
  margin: 3;
  padding: 0;}
body{
  background:linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url(del.jpg );
  height: 100vh;
  background-position:center;
background-size: cover;
font-family: sans-serif;
}
.log{
text-align: right;
margin-right: 20px;

}
.btn1
{
  border: 1px solid #3498db;
  background: none;
  padding: 10px 20px;
  font-size: 20px;font-family: "montserrat";
  cursor: pointer;
  margin:10px;
  color: #fff;
  transition: 0.9s;
  position: relative;
  overflow:hidden;
}
.btn1:hover
{
    color: #2498db;
}
.btn1::before
{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0%;
  background: #3498db;
  z-index: -1;
  transition: 0.8s;
  top: 0;
  border-radius: 0 0 50% 50%;
}
.btn1:hover::before
{
  height: 180%;
}
.title{
  text-align: center;
  padding: 50px 0 20px;
}
.title{
  margin: 0;
  padding: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 25px;
}
.container{
  width: 50%;
  height: 400px;
  background-color: #fff;
  margin: 0 auto;
  border: 2px solid #fff;
  box-shadow: 0 15px 100px rgba(0, 0, 0, 5);
}
.container .left{
  float:left;
  width: 50%;
  height: 400px;
  background: url(del.jpg);
  background-position:center;
background-size: cover;
box-sizing: border-box;
}
.container .right{
  float:left;
  width: 50%;
  height: 400px;
  box-sizing: border-box;
}
.formbox
{
  width: 100%;
  padding: 80px 40px;
  box-sizing: border-box;
  height: 400px;
  background: #fff;
}
.formbox p{
  margin: 0;
  padding: 0;
  font-weight: bold;
  color: #a6af13;
}
.formbox input
{
  width: 100%;
  margin-bottom: 20px;
}
.formbox input[type="email"],
.formbox input[type="password"]
{
  border: none;
  border-bottom: 2px solid #a6af13;
  outline: none;
  height: 40px;
}
.formbox input[type="email"]:focus,
.formbox input[type="password"]:focus
{
  border-bottom: 2px solid #262626;
}
.formbox input[type="submit"]
{
  border: none;
  outline: none;
  height: 40px;
  color:#fff;
  background: #262626;
  cursor: pointer;
}
.formbox input[type="submit"]:hover
{
  background: #a6af13;
}
