mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
84 lines
1.5 KiB
Plaintext
84 lines
1.5 KiB
Plaintext
.login {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
|
|
&__bgImage {
|
|
background-size: cover;
|
|
background-position: center;
|
|
filter: blur(10px) brightness(0.4);
|
|
-webkit-filter: blur(10px) brightness(0.4);
|
|
position: absolute;
|
|
top: -20px;
|
|
left: -20px;
|
|
right: -20px;
|
|
bottom: -20px;
|
|
z-index: 0;
|
|
}
|
|
|
|
&__loginWrapper {
|
|
position: relative;
|
|
z-index: 1;
|
|
background: rgba(20, 20, 25, 0.7);
|
|
backdrop-filter: blur(20px);
|
|
-webkit-backdrop-filter: blur(20px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 24px;
|
|
padding: 3rem;
|
|
width: 90%;
|
|
max-width: 500px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
|
|
|
|
}
|
|
|
|
&__logoWrapper {
|
|
margin-bottom: 2.5rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
|
|
.logo {
|
|
position: static !important;
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
form {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.2rem;
|
|
}
|
|
|
|
&__inputGroup {
|
|
width: 100%;
|
|
}
|
|
|
|
// Mobile responsiveness
|
|
@media (max-width: 480px) {
|
|
&__loginWrapper {
|
|
padding: 2rem 1.5rem;
|
|
width: 95%;
|
|
border-radius: 20px;
|
|
background: rgba(20, 20, 25, 0.85);
|
|
|
|
&::after {
|
|
opacity: 0.2;
|
|
filter: blur(10px);
|
|
}
|
|
}
|
|
|
|
&__logoWrapper {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
}
|
|
}
|