62 lines
1.1 KiB
CSS
62 lines
1.1 KiB
CSS
.loginContainer {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
}
|
|
|
|
.loginBox {
|
|
width: 400px;
|
|
padding: 40px;
|
|
background: rgba(255, 255, 255, 0.9);
|
|
border-radius: 16px;
|
|
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
|
|
backdrop-filter: blur(4px);
|
|
}
|
|
|
|
.logo {
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.logo img {
|
|
width: 64px;
|
|
height: 64px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.logo h1 {
|
|
font-size: 24px;
|
|
color: #333;
|
|
margin: 0;
|
|
}
|
|
|
|
.input {
|
|
height: 50px;
|
|
border-radius: 8px;
|
|
border: 1px solid #e8e8e8;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.input:hover,
|
|
.input:focus {
|
|
border-color: #764ba2;
|
|
box-shadow: 0 0 0 2px rgba(118, 75, 162, 0.2);
|
|
}
|
|
|
|
.loginButton {
|
|
height: 50px;
|
|
border-radius: 8px;
|
|
font-size: 16px;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
border: none;
|
|
margin-top: 16px;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.loginButton:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(118, 75, 162, 0.4);
|
|
} |