HTML CODE:
<!DOCTYPE html>
<html>
<head>
<title>page</title>
<link rel="stylesheet" type="text/css" href="LoginForm2.css">
</head>
<body>
<div class="loginbox">
<img src="https://png.pngtree.com/element_origin_min_pic/17/09/18/07d35e1b5ff71c52f75c6ed3b211dae5.jpg" class="user">
<h2>Login System</h2>
<form>
<p>Email</p>
<input type="text" name="" placeholder="Enter Email">
<p>Password</p>
<input type="password" name="" placeholder="*******">
<input type="submit" name="" value="Sign In">
<a href="#">Forget Password</a>
</form>
</div>
</body>
</html>
CSS CODE:
body{
margin: 0;
padding: 0;
background-image:url(https://www.enpareja.com/__export/1531431193661/sites/debate/img/2018/07/12/mujer3campo_unsplas.jpg_671063525.jpg);
background-size: cover;
background-repeat: no-repeat;
font-family:sans-serif;
}
img{
position: absolute;
width: 100px;
border-radius: 50%;
}
.loginbox{
position: absolute;
top: 50%;
left: 50%;
transform:translate(-50%,-50%);
width: 350px;
height:420px;
padding: 80px 40px;
box-sizing: border-box;
background: rgba(0,0,0,.5);
}
.user{
height: 100px;
overflow: hidden;
position: absolute;
top:calc(-100px/2);
left:calc(50% - 50px);
}
h2{
margin:0;
padding: 0 0 20px;
color:#00cc00;
text-shadow:1px 1px 1px #262626;
text-align:center;
letter-spacing: 1px;
}
.loginbox p{
margin:0;
padding: 0;
font-weight: bold;
color: #fff
}
.loginbox input{
width: 100%;
margin-bottom: 20px;
}
.loginbox input[type="text"],
.loginbox input[type="password"]{
border:none;
border-bottom: 1px solid #fff;
background-color: transparent;
outline: none;
height: 40px;
color:#fff;
font-size: 16px
}
::placeholder{
color: rgba(255,255,255,.5)
}
.loginbox input[type="submit"]{
border:none;
outline: none;
height: 40px;
color: #fff;
font-size: 16px;
background:#ff5c33;
cursor: pointer;
border-radius: 20px;
transition: .5s;
font-weight: bold;
letter-spacing: 1px;
}
.loginbox input[type="submit"]:hover{
background:#00cc00;
color: #262626
}
.loginbox a{
color: #fff;
font-size: 14px;
font-weight: bold;
text-decoration: none;
opacity: .8
}
Leave a comment