53 lines
870 B
CSS
53 lines
870 B
CSS
|
|
.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;
|
|
}
|