feat: request access button on login page (mailto rgalyaviev)

This commit is contained in:
2026-05-08 12:59:15 +00:00
parent e516cc4aeb
commit b9f1e375d3
2 changed files with 18 additions and 0 deletions
+17
View File
@@ -950,3 +950,20 @@ button {
color: #4a7090;
line-height: 1.35;
}
.request-access-btn {
display: block;
text-align: center;
margin-top: 1rem;
padding: 0.6rem 1rem;
border-radius: 8px;
border: 1px solid rgba(255,255,255,.2);
color: #a0b8cc;
font-size: .88rem;
text-decoration: none;
transition: background .2s, color .2s;
}
.request-access-btn:hover {
background: rgba(255,255,255,.07);
color: #dce8f5;
}