diff --git a/captcha.html b/captcha.html index b868edd..b140f92 100644 --- a/captcha.html +++ b/captcha.html @@ -35,6 +35,11 @@ font-size: 14px; margin-bottom: 10px; } + .success { + color: green; + font-size: 14px; + margin-bottom: 10px; + } .button { padding: 10px 20px; background-color: #4CAF50; @@ -46,6 +51,25 @@ .button:hover { background-color: #45a049; } + #captcha-completion { + font-size: 16px; + margin-top: 20px; + } + #captcha-question, #captcha-answer, #submit-button { + display: block; + } + #captcha-completion.correct { + color: green; + font-weight: bold; + font-size: 18px; + } + #captcha-completion.error { + color: red; + font-size: 16px; + } + .hidden { + display: none; + } @@ -55,6 +79,7 @@
+