37 lines
719 B
CSS
37 lines
719 B
CSS
/* register-base.css */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Arial', sans-serif;
|
|
background: radial-gradient(circle at 20% 20%, #3b0066, #0c001a 70%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
/* Neon Particles */
|
|
#particles {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1;
|
|
}
|
|
|
|
.particle {
|
|
position: absolute;
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle, #00ffff, #0099ff);
|
|
box-shadow: 0 0 10px #00eaff, 0 0 25px #0088ff;
|
|
pointer-events: none;
|
|
} |