This repository was archived by the owner on Aug 8, 2025. It is now read-only.

Description
<title>Login</title>
<style>
body {
background-color: #f0f2f5;
font-family: Arial, sans-serif;
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
}
.login-box {
background-color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
width: 300px;
}
.login-box h2 {
margin-bottom: 20px;
text-align: center;
}
.login-box input {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 5px;
border: 1px solid #ccc;
}
.login-box button {
width: 100%;
padding: 10px;
background-color: #1877f2;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.login-box button:hover {
background-color: #165ecb;
}
</style>
Login
Log In