diff --git a/assets/public/verify.html b/assets/public/verify.html index c70d7709..83ce8655 100644 --- a/assets/public/verify.html +++ b/assets/public/verify.html @@ -57,7 +57,8 @@ } .box { - width: 22vw; + min-width: 350px; + width: max(22vw, 350px); padding: 32px; border-radius: 8px; background-color: rgb(32, 32, 32); @@ -66,6 +67,30 @@ flex-direction: column; text-align: center; } + + #captcha-container { + margin: 20px 0; + } + + .retry-button { + margin-top: 15px; + padding: 10px 20px; + background-color: #5865f2; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; + font-family: "Montserrat", sans-serif; + } + + .retry-button:hover { + background-color: #4752c4; + } + + .retry-button:disabled { + background-color: #666; + cursor: not-allowed; + } @@ -86,6 +111,9 @@