chore: Styling Login component

This commit is contained in:
2026-01-22 14:56:26 -05:00
parent 3ba4ecba66
commit cd2d015fb0
4 changed files with 76 additions and 20 deletions

View File

@@ -0,0 +1,52 @@
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 20px;
box-sizing: border-box;
}
h1 {
color: #0056b3;
}
.formWrapper {
width: 100%;
max-width: 400px;
}
.container input[type="text"],
.container input[type="password"] {
width: 100%;
padding: 12px;
margin: 8px 0 16px 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}
.container input[type="submit"] {
width: 100%;
padding: 12px;
margin-top: 16px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.container input[type="submit"]:hover {
background-color: #0056b3;
}
.container label {
display: block;
margin-bottom: 4px;
font-weight: bold;
}