2025-10-24 10:49:52 +01:00
|
|
|
.authContainer {
|
|
|
|
|
position: relative;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-07-17 00:02:49 +01:00
|
|
|
background-color: var(--auth-bg-color);
|
2025-10-24 10:49:52 +01:00
|
|
|
padding: 1.5rem 1.5rem 0;
|
2026-04-17 10:50:16 +01:00
|
|
|
font-family:
|
|
|
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
2025-10-24 10:49:52 +01:00
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.authCard {
|
2026-07-17 00:02:49 +01:00
|
|
|
width: min(26rem, 96vw);
|
|
|
|
|
max-height: 96vh;
|
|
|
|
|
padding: 2.5rem 2rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2025-10-24 10:49:52 +01:00
|
|
|
background-color: var(--auth-card-bg);
|
|
|
|
|
border-radius: 1.25rem;
|
|
|
|
|
box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.12);
|
2026-07-17 00:02:49 +01:00
|
|
|
overflow-y: auto;
|
|
|
|
|
overflow-x: hidden;
|
2025-10-24 10:49:52 +01:00
|
|
|
}
|
|
|
|
|
|
2026-07-17 00:02:49 +01:00
|
|
|
.authCard::-webkit-scrollbar {
|
2025-10-24 10:49:52 +01:00
|
|
|
display: none; /* WebKit browsers (Chrome, Safari, Edge) */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.authContent {
|
2026-07-17 00:02:49 +01:00
|
|
|
max-width: 22rem; /* 352px */
|
2025-10-24 10:49:52 +01:00
|
|
|
width: 100%;
|
|
|
|
|
}
|