74 lines
1000 B
CSS
74 lines
1000 B
CSS
.loginContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
background: #f0f2f5;
|
|
width: 100vw;
|
|
}
|
|
|
|
.loginBox {
|
|
background: #fff;
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.logo {
|
|
width: 80px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.h1 {
|
|
margin-bottom: 10px;
|
|
font-size: 24px;
|
|
color: #333;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 14px;
|
|
color: #777;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.input {
|
|
padding: 10px 15px;
|
|
margin-bottom: 15px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 6px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.button {
|
|
background-color: #337f83;
|
|
color: white;
|
|
border: none;
|
|
padding: 12px;
|
|
border-radius: 6px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #3c9a9f;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 20px;
|
|
font-size: 12px;
|
|
color: #aaa;
|
|
}
|