CA2
CA2
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<html>
<style>
body {
background-color: red;
font-family: Arial;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
.login-container {
background-color: whitesmoke;
padding: 20px;
width: 300px;
text-align: center;
}
.login-container h2 {
font-size: 24px;
margin-bottom: 20px;
.login-container input[type="text"],
.login-container input[type="password"] {
padding: 10px;
margin: 10px 0;
box-sizing: border-box;
.login-container input[type="submit"] {
background-color: black;
color: whitesmoke;
border: none;
cursor: pointer;
.login-container input[type="submit"] {
background-color: #555;
.forgot-password {
margin-top: 20px;
font-size: 12px;
color: whitesmoke;
writing-mode: horizontal-tb;
text-orientation: mixed;
</style>
</head>
<body>
<div class="login-container">
<h2>Login Form</h2>
<form>
</form>
</div>
<div class="forgot-password">
</div>
</body>
</html>
OUTPUT