Merge pull request #10 from nexiumfit/squadledude-patch-3

uh
This commit is contained in:
SquadleDude
2026-08-03 16:41:26 +03:00
committed by GitHub
+21
View File
@@ -79,3 +79,24 @@ a:hover {
color: rgb(3, 133, 255) !important;
transition: 0.2s;
}
/* Logo outside the signup card so it can overlap/escape the container */
.signup-wrapper { position: relative; }
.logo-outside {
position: absolute;
right: -40px; /* push beyond the card -- adjust to taste */
top: 50%;
transform: translateY(-50%);
max-width: 320px;
width: auto;
height: auto;
z-index: 0; /* behind the card; use higher if you want it above */
pointer-events: none;
}
.signup-container { position: relative; z-index: 1; }
.signup-subtitle { text-align: center; margin-bottom: 12px; color: rgba(230,238,248,0.9); font-size: small; }
@media (max-width: 992px) {
.logo-outside { display: none; }
.signup-container { min-width: 320px; }
}