
body{
    margin:0;
    padding:0;   
    display: flex; 
    justify-content: center;  
    align-items: center;      
    min-height: 100vh;  
    background: conic-gradient(black,rgb(53, 1, 1),black,rgb(53, 1, 1),black,rgb(53, 1, 1));      
     
     
}
.ball1{
    border-radius:50%;
    border:white;
    box-shadow: 0 0 5px blue,0 0 10px white;
    background-color: white;
    height:20px;
    width:20px;
    position:absolute;
    z-index:0;
    animation:ball1 8s infinite alternate;
}
.ball2{
    border-radius:50%;
    border:white;
    box-shadow: 0 0 5px blue,0 0 10px white;
    background-color: white;
    height:20px;
    width:20px;
    position:absolute;
    z-index:0;
    animation:ball2 8s infinite alternate;
}
.ball3{
    border-radius:50%;
    border:white;
    box-shadow: 0 0 5px blue,0 0 10px white;
    background-color: white;
    height:20px;
    width:20px;
    position:absolute;
    z-index:0;
    animation:ball3 8s infinite alternate;
}
.ball4{
    border-radius:50%;
    border:white;
    box-shadow: 0 0 5px blue,0 0 10px white;
    background-color:white;
    height:20px;
    width:20px;
    position:absolute;
    z-index:0;
    animation:ball4 8s infinite alternate;
}
form{
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    gap:8px;
    max-width:100vw;
    z-index:2;
}
.container{
    border-radius:10px;
    width:100%;
    max-width:350px;
    height:100%;
    max-height:500px;
    margin: 20px auto;
    padding:10px 20px;
    background-color:rgb(180, 241, 236,0.1);
    color:rgb(253, 250, 250);
    text-shadow: 0 0 5px blue,0 0 10px white;
    animation:anime 2s infinite alternate;
    z-index:2; 
}
input,textarea{
    width:100%;
    padding:8px;
    box-sizing:border-box;
}
label{
    text-align:left;
    width:100%;
}
button{
    padding:10px;
    width:100px;
    margin:20px;
    border-radius: 10px;
    align-self:flex-end;
    border:none;
    background-color: red;
    color:white;
    cursor:pointer;
    font-weight: bold;
}
@keyframes anime{
    0%{box-shadow:0 0 15px  rgb(83, 64, 252),0 0 5px  white;}
    25%{box-shadow:0 0 15px white,0 0 5px white;} 
    75%{box-shadow:0 0 20px  rgb(83, 64, 252),0 0 10px  white;}
    100%{box-shadow:0 0 25px white,0 0 15px  white;}
}
@keyframes ball1{
    0%{top:0;right:25%;}
    25%{top:25%;right:70%;}
    50%{top:50%;right:5%;}
    75%{top:55%;right:70%;}
    100%{top:75%;right:5%;}
}
@keyframes ball2{
    0%{top:0;left:25%;}
    25%{top:25%;left:70%;}
    50%{top:50%;left:5%;}
    75%{top:55%;left:70%;}
    100%{top:75%;left:5%;}
}
@keyframes ball3{
    0%{right:0;top:25%;}
    25%{right:25%;top:90%;}
    50%{right:75%;top:5%;}
    75%{right:80%;top:90%;}
    100%{right:25%;top:5%;}
}
@keyframes ball4{
    0%{left:0;top:25%;}
    25%{left:25%;top:90%;}
    50%{left:75%;top:5%;}
    75%{left:80%;top:90%;}
    100%{left:25%;top:5%;}
}
.error{
    color:white;
    text-align: left;
    display:block;
    margin-bottom: 10px;
    font-size:12px;
}



    