Webpage Design Submission
<h3>HTML</h3>
<pre>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel="stylesheet" href="[Link]">
</head>
<body>
<div class="container">
<div class="left-section">
<img src="[Link]" alt="Illustration">
</div>
<div class="right-section">
<h2>LOGIN</h2>
<form action="#" method="post">
<label for="username">Username</label>
<input type="text" id="username" name="username" placeholder="Enter Username here">
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Enter Password here">
<div class="remember-me">
<input type="checkbox" id="rememberMe" name="rememberMe">
<label for="rememberMe">Remember Me</label>
</div>
<button type="submit">Login</button>
<div class="signup">
<p>Not a member? <a href="#">Signup Now</a></p>
</div>
<div class="social-login">
<p>Logar com</p>
<div class="social-icons">
<img
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAIAAADTED8xAAABtElEQVR42u3RAQ0
AAAjDMO5fN4AAkFBIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...
<h3>CSS</h3>
<pre>
body {
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(to right, #dbeaf8, #dbeaf8);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
.container {
display: flex;
background-color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
overflow: hidden;
.left {
flex: 1;
.left img {
width: 100%;
height: 100%;
.right {
flex: 1;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
.right h2 {
text-align: center;
h2 {
margin: 0 0 20px;
.input-container {
margin-bottom: 15px;
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
input[type="text"], input[type="password"] {
width: calc(100% - 20px);
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
.remember-me {
display: flex;
align-items: center;
margin-bottom: 20px;
.remember-me input {
margin-right: 10px;
button {
padding: 10px 20px;
width: 100%;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
button:hover {
background-color: #0056b3;
.signup {
text-align: center;
margin-top: 20px;
.signup a {
color: #007bff;
text-decoration: none;
.signup a:hover {
text-decoration: underline;
.social-login {
margin-top: 20px;
text-align: center;
.social-login p {
margin: 0;
.social-icons {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 10px;
.social-icons img {
width: 30px;
height: 30px;
cursor: pointer;
</pre>