*{
    margin: 0;
    padding: 0;
}

:root{
    --text-color:rgba(240, 248, 255, 0.966);
    --base-color: #e100ffbb;
    --bg-color:#008cff;
}
body{
    background-color: #242222;
    z-index: 0;
    background: cover;
    min-height: 100vh;
    color: rgba(155, 208, 253, 0.966);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    background-color: #242222;
    min-height: 70vh;
    width: min(500px,100%);  
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;  
    flex-grow: 5;
    overflow: hidden;
}
@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}
form::after,form::before{
    --angle:0deg;
    content: '';
    position: absolute;
    min-height: 70vh;
    width: min(99%);  
    background-image: conic-gradient(from var(--angle), #ff4545,#00ff99,#006aff,#ff0095,#ff4545);
    z-index: -1;
    padding: 5px;
    border-radius: 10px;
    animation: 3s spin linear infinite;

}
form::before{
    filter: blur(1.5rem);
}
@keyframes spin {
    0%{
        --angle:0deg;
    }
    100%{
      --angle:360deg;
    }
}
input{
    border: 0;
    outline: 0;
    padding: 10px;
    background-color: rgba(238, 197, 231, 0.705) ;
    border-radius: 7px;
    margin: 10px;
    width: 280px;
    color: #0004e7;
}
input:focus-within{
    padding: 10px;
    background-color: rgba(238, 197, 231, 0.705) ;
    border-radius: 7px;
    margin: 10px;
    width: 280px;
    color: #1100fd;
}

input:hover{
     border: 2px solid #e100ff;
    box-shadow: 0px 10px 60px 0px rgb(73, 73, 73);
     transition: box-shadow .3s ease-in-out;
}
.btn{
    padding: 1em 10em;
    background: #a5b0ec5d;
    border: 0;
    color: #0e0d0d;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    border-radius: 1000px;
    position: relative;
    top: 30px;

    display: flex;
    justify-content: center;
    align-items: center; 
    margin-bottom: 50px; /* Added spacing to push signup link down */
}
.btn::after{
    content:"";
    position: absolute;
    height: 107%;
    width:102%;
    border-radius: 1000px;
    background-image:linear-gradient( to bottom right , #008cff , #e100ffbb);
    z-index: -1;
}

.btn:hover{
    z-index: 0;
    box-shadow: 40px 0 100px #008cff, -40px 0 100px #e100ff;
    transition: box-shadow .3s ease-in-out , z-index .3s ease-in-out .6s;
}

.im{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    
}
form > div{
    width: 100%;
    display: flex;
    justify-content: center;
}
form label{
    fill: rgb(91, 114, 245);
    background-color: #f5c2fc;
    height: 40px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 6px;
}
.ps{
    position: relative;
    top: 100px;
    right: 50px;
    color: rgb(247, 7, 227);
    font: bolder;
    padding: 4px;
}
.ps a{
    padding: 1em 0.1em;
    background: #a5b0ec5d;
    border: 0;
    text-decoration: none;
    color: #0e0d0d;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    border-radius: 1000px;
    position: relative;
    bottom:38px;
    left:190px ;

    display: flex;
    justify-content: center;
    align-items: center; 
}
.ps a::after{
    content:"";
    position: absolute;
    height: 107%;
    width:102%;
    border-radius: 1000px;
    background-image:linear-gradient( to bottom right , #008cff , #e100ffbb);
    z-index: -1;
}

.ps a:hover{
    z-index: 0;
    box-shadow: 40px 0 100px #008cff, -40px 0 100px #e100ff;
    transition: box-shadow .3s ease-in-out , z-index .3s ease-in-out .6s;
}
.arr:hover{
    background-color: #ffffff73;
    border-radius: 10px;
}
.arr{
    padding: 10px;
    position: absolute;
    top: 5px;
    left: 10px;
    fill: #ffffff;
}
@media (max-width:430px) {    
    img{
        visibility: hidden; 
    }
    .arr{
        fill: #ffffff;
    }
    .ps{
        left: 10px;
    }
    .ps a {
        bottom: 0;
        left: 0;
    }
    form{
        width: min(500px,100%); 
    }
}



