<!DOCTYPE html>
<html>
<head>
<title>Facebook - Log In or Sign Up</title>
<style>
body {
background-color: #f0f2f5;
font-family: Arial, sans-serif;
}
.container {
margin: 80px auto;
max-width: 400px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
padding: 24px;
text-align: center;
}
h1 {
font-size: 36px;
font-weight: bold;
color: #1877f2;
margin-top: 0px;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 12px;
margin-top: 24px;
margin-bottom: 12px;
border: 1px solid #ccd0d5;
border-radius: 6px;
box-sizing: border-box;
font-size: 16px;
background-color: #f0f2f5;
}
input[type="submit"] {
background-color: #1877f2;
color: #ffffff;
font-size: 20px;
font-weight: bold;
border: none;
border-radius: 6px;
padding: 12px;
width: 100%;
margin-top: 24px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #3b5998;
}
.links {
margin-top: 12px;
font-size: 14px;
color: #1c1e21;
}
.links a {
color: #1877f2;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<h1>Facebook</h1>
<form action="">
<input type="text" placeholder="Email or Phone Number">
<input type="password" placeholder="Password">
<input type="submit" value="Log In">
</form>
<div class="links">
<a href="#">Forgot Password?</a> · <a href="#">Sign Up for Facebook</a>
</div>
</div>
</body>
</html>