<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login V19</title>
<style>
* {
box-sizing: border-box;
}
body {
/* justify-content: center; */
/* align-items: center; */
margin: 0px;
padding: 0px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: black;
background-color: #e9faff;
font-weight: bold;
}
.cont {
/* border: 2px solid #db4130; */
/* text-decoration: none; */
background: #fff;
position: absolute;
top: 22%;
left: 28%;
width: 440px;
padding-left: 55px;
padding-right: 55px;
padding-top: 55px;
padding-bottom: 55px;
border-radius: 10px;
box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
font-weight: bold;
color: #757272;
}
.input {
height: 40px;
width: 100%;
padding: 0px 25px 0px 25px;
line-height: 2px;
font-size: 14px;
border: 1px solid #e0dcdc;
background: transparent;
}
#submit {
margin: 20px auto;
color: whitesmoke;
background-color: #4272d7;
height: 40px;
border-radius: 4px;
border: none;
}
#submit:hover {
background-color: rgb(82, 46, 46);
cursor: pointer;
}
.bottom {
text-size-adjust: 25px;
text-align: center;
text-decoration: none;
color: #999999;
}
#t1 {
margin-top: 35px;
margin-bottom: 4px;
}
a {
text-decoration: none;
color: #4272d7;
}
a:hover {
text-decoration: underline;
}
span{
color: rgb(54, 49, 49);
}
</style>
</head>
<body>
<div class="cont">
<h1>
Forgotton Password:
</h1>
<div>
<span>Mobile Number/ Email-id</span> <input type="text" class="input" id="email" placeholder="">
</div>
<div>
<input type="submit" name="" class="input" id="submit" value="Send OTP">
</div>
<div class="bottom" id="t2">
Already have an account? <a href="Login Page.html">Login</a>
</div>
<div class="bottom" id="t2">
Create an account? <a href="Sign up.html">Sign up</a>
</div>
</div>
</body>
</html>
Comments
Post a Comment