From c6e59252b04a980a67399bc7c40d1ade2471aff1 Mon Sep 17 00:00:00 2001 From: SquadleDude <167652540+squadledude@users.noreply.github.com> Date: Mon, 3 Aug 2026 16:41:13 +0300 Subject: [PATCH] uh --- app/static/css/signup.css | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/app/static/css/signup.css b/app/static/css/signup.css index e9b2a40..81fa700 100644 --- a/app/static/css/signup.css +++ b/app/static/css/signup.css @@ -78,4 +78,25 @@ a:hover { text-decoration: none !important; color: rgb(3, 133, 255) !important; transition: 0.2s; -} \ No newline at end of file +} + +/* 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; } +}