2021-01-21 16:09:23 +01:00
|
|
|
.login {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2021-06-28 08:52:09 +02:00
|
|
|
width: 100%;
|
2021-01-21 16:09:23 +01:00
|
|
|
height: 100%;
|
2026-01-28 14:27:03 +01:00
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
2021-01-21 16:09:23 +01:00
|
|
|
|
|
|
|
|
&__bgImage {
|
|
|
|
|
background-size: cover;
|
2026-01-28 14:27:03 +01:00
|
|
|
background-position: center;
|
|
|
|
|
filter: blur(10px) brightness(0.4);
|
|
|
|
|
-webkit-filter: blur(10px) brightness(0.4);
|
2021-01-21 16:09:23 +01:00
|
|
|
position: absolute;
|
2026-01-28 14:27:03 +01:00
|
|
|
top: -20px;
|
|
|
|
|
left: -20px;
|
|
|
|
|
right: -20px;
|
|
|
|
|
bottom: -20px;
|
2021-06-28 08:52:09 +02:00
|
|
|
z-index: 0;
|
2021-01-21 16:09:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__loginWrapper {
|
2026-01-28 14:27:03 +01:00
|
|
|
position: relative;
|
2021-06-28 08:52:09 +02:00
|
|
|
z-index: 1;
|
2026-01-28 14:27:03 +01:00
|
|
|
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%;
|
2026-04-22 21:11:18 +02:00
|
|
|
max-width: 500px;
|
2021-01-21 16:09:23 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-01-28 14:27:03 +01:00
|
|
|
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;
|
|
|
|
|
}
|
2021-01-21 16:09:23 +01:00
|
|
|
}
|
2021-06-28 08:52:09 +02:00
|
|
|
|
|
|
|
|
form {
|
2026-01-28 14:27:03 +01:00
|
|
|
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;
|
|
|
|
|
}
|
2021-06-28 08:52:09 +02:00
|
|
|
}
|
2021-01-21 16:09:23 +01:00
|
|
|
}
|