diff --git a/Login.css b/Login.css
index a27ad35..06e4241 100644
--- a/Login.css
+++ b/Login.css
@@ -168,14 +168,19 @@ input::placeholder {
.modal-content {
background: linear-gradient(135deg, rgba(30, 0, 50, 0.95) 0%, rgba(50, 0, 80, 0.95) 100%);
- border: 2px solid rgba(255, 255, 255, 0.1);
+ /* Border diubah menjadi lebih terang */
+ border: 2px solid rgba(0, 217, 255, 0.3);
border-radius: 20px;
padding: 40px 30px;
text-align: center;
max-width: 400px;
width: 90%;
- box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
- animation: slideIn 0.3s ease;
+ /* Box shadow ditambahkan efek neon (luar dan dalam) */
+ box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
+ 0 0 40px rgba(0, 217, 255, 0.3),
+ inset 0 0 30px rgba(0, 217, 255, 0.1);
+ /* Animasi digabungkan: slideIn untuk muncul, glowBorder untuk efek neon berkedip */
+ animation: slideIn 0.3s ease, glowBorder 3s ease-in-out infinite;
}
.modal-icon {
diff --git a/Register.html b/Register.html
index 55513cf..f315141 100644
--- a/Register.html
+++ b/Register.html
@@ -62,9 +62,7 @@
-
-
-
-
+
+