47 lines
863 B
CSS
47 lines
863 B
CSS
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
background-image: url('https://picsum.photos/1920/1080');
|
|
background-size: cover;
|
|
background-position: center;
|
|
}
|
|
|
|
.logo {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 150px;
|
|
}
|
|
|
|
.login-container {
|
|
max-width: 400px;
|
|
padding: 2rem;
|
|
border-radius: 0.5rem;
|
|
background-color: rgba(255, 255, 255, 0.9);
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #3996d2;
|
|
border-color: #3996d2;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #2d7bad;
|
|
border-color: #2d7bad;
|
|
}
|
|
|
|
.password-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.password-wrapper .toggle-password {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 1rem;
|
|
transform: translateY(-50%);
|
|
cursor: pointer;
|
|
}
|