*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    background-image:url(img2.jpg) ;
    background-size: cover;
    justify-content: center;
    min-height: 100vh;
}

.parent{
    display: flex;
    flex-direction: column;
    align-items: center;
   
}
form{
    display: flex;
    flex-direction: column;
    background-color:transparent;
    align-items: center;
    width:400px;
    height: 260px;

    
}
.child{
    margin-top: 200px;
    border: 2px  white  solid;
    border-radius: 5px;
    padding: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0  30px rgb(187, 90, 216), 0 0 30px rgb(187, 90, 216) inset;
} 
input{
    background-color: transparent;
    border: 2px solid palevioletred;
    color: aliceblue;
    padding: 10px;
    border-radius: 30px;
    margin: 10px;
    box-shadow: 0 0 10px palevioletred;
}
::placeholder{
    color:rgb(187, 90, 216);
    text-decoration: solid;

}
h1{
    color: aliceblue;
    text-shadow: 0px 0px 10px plum;
    
}
button{
    width: 80px;
    height: 40px;
    background-color: darkorchid;
    color: aliceblue;
    border: 2px solid palevioletred;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    box-shadow: 0 0 20px pink;
}
.box{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
