This commit is contained in:
Evelyn Sucitro 2025-11-24 15:08:39 +07:00
parent e1b991b3eb
commit c548614a94
2 changed files with 10 additions and 7 deletions

View File

@ -168,14 +168,19 @@ input::placeholder {
.modal-content { .modal-content {
background: linear-gradient(135deg, rgba(30, 0, 50, 0.95) 0%, rgba(50, 0, 80, 0.95) 100%); 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; border-radius: 20px;
padding: 40px 30px; padding: 40px 30px;
text-align: center; text-align: center;
max-width: 400px; max-width: 400px;
width: 90%; width: 90%;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); /* Box shadow ditambahkan efek neon (luar dan dalam) */
animation: slideIn 0.3s ease; 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 { .modal-icon {

View File

@ -62,9 +62,7 @@
</div> </div>
</div> </div>
<script src="Register.js"></script> <script type="module" src="Register.js"></script>
<script src="Animation Register.js"></script> <script src="Animation_Register.js"></script>
<script src="Modal.js"></script>
<script src="API Register.js"></script>
</body> </body>
</html> </html>