<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#id1{
background-color: aqua;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background:
url('https://media.istockphoto.com/id/1335423230/vector/gradient-diagonal-lines-
background-abstract-geometric-design.jpg?
s=612x612&w=0&k=20&c=4G_G_sCd0tGnOaUOlyVtVRtInEabC3FAUSQLQ4ljqqM=') no-repeat;
background-size: cover;
background-position: center;
color: black;
}
.class2{
border: 2px solid rgb(0, 0, 0);
padding: 30px 40px;
background-color: rgb(209, 42, 195);
border-radius:10px ;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-
serif;
}
h2 {
text-align: center;
}
.input_txt{
width: 250px;
height: 30px;
}
button{
width: 260px;
height: 30px;
background-color: rgb(41, 38, 38);
color: aliceblue;
}
p{
text-align: center;
color: #fff;
}
a{
color: #fff;
}
a:hover{
text-decoration: underline;
}
button:hover{
background-color: #fff;
color: black;
}
label{
height: 4px;;
}
</style>
</head>
<body id="id1">
<div id="id2" class="class2">
<form>
<h2>Sign In</h2>
<p color: black>Sign in with your username and password</p>
<div class="container">
<label>Username : </label> <br>
<input type="text" placeholder="Enter Username" name="username"
class="input_txt"> <br>
<label>Password : </label> <br>
<input type="password" placeholder="Enter Password" name="password"
class="input_txt"> <br><br>
<input type="checkbox" checked="checked"> Remember me
<a href="#"> Forgot password? </a> <br><br>
<button type="submit"><b>Login</b></button> <br><br>
<p>Not a member?<a href="#" id>Register Here</a> </p>
</div>
</form>
</div>
</body>
</html>