diff --git a/public/register.html b/public/register.html
index f78117c28d9c8ed4052d65b56da4dd72b34ba7d8..88fcc6fbf65b3ea23b01c77b2ebf6194d7243168 100644
--- a/public/register.html
+++ b/public/register.html
@@ -80,10 +80,24 @@
         opacity: 0;
         transition: opacity 0.6s ease;
       }
-
       .success_message.show {
         display: block;
         opacity: 1;
+      }
+	  .login-link {
+        text-align: center;
+        margin-top: 1.5rem;
+        font-size: 0.9rem;
+        color: #555;
+      }
+
+      .login-link a {
+        color: #007bff;
+        text-decoration: none;
+      }
+
+      .login-link a:hover {
+        text-decoration: underline;
       }
     </style>
   </head>
@@ -109,6 +123,10 @@
       </form>
       <span class="error_text"></span>
       <div class="success_message">Registration successful! Redirecting...</div>
+
+      <div class="login-link">
+        Already have an account? <a href="register.html">Log in</a>.
+      </div>
     </div>
   </body>
 </html>