40 lines
627 B
CSS
40 lines
627 B
CSS
|
|
.login-container {
|
||
|
|
min-height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
|
|
}
|
||
|
|
|
||
|
|
.login-card {
|
||
|
|
width: 400px;
|
||
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
||
|
|
border-radius: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.login-header {
|
||
|
|
text-align: center;
|
||
|
|
margin-bottom: 24px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.login-header h1 {
|
||
|
|
font-size: 32px;
|
||
|
|
font-weight: bold;
|
||
|
|
color: #667eea;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.login-header p {
|
||
|
|
font-size: 14px;
|
||
|
|
color: #666;
|
||
|
|
margin-top: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.login-footer {
|
||
|
|
margin-top: 20px;
|
||
|
|
text-align: center;
|
||
|
|
color: white;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|