*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    color: white;
}
body{
    background: url('../icon/wallpaper3.jpg');
    /* background-image: linear-gradient(45deg, #250946, #321158); */
    /* background-color: #250946; */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    border: 1px solid rgba(255, 255, 255, 0.185);
    border-radius: 10px;
    width: 800px;
    min-height: 450px;
    background-color: rgba(255, 255, 255, 0.116);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container1{
    /* border: 1px solid rgba(128, 128, 128, 0.158); */
    border: 1px solid rgba(255, 255, 255, 0.185);
    border-radius: 10px;
    width: 800px;
    min-height: 450px;
    background-color: rgba(255, 255, 255, 0.116);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: relative;
}
.header{
    margin: 50px;
    color: white;
}
#name{
    width: 50%;
    height: 50px;
    border: none;
    /* border-radius: 10px; */
    border-bottom: 1px solid white;
   
    /* outline: none; */
    text-align: center;
    color: white;
    padding: 5px;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0);
}
#name:focus{
    /* border: none; */
    outline: none;
    border-bottom: 1px solid white;
}
::placeholder{
    color: white;
}

#button{
    width: 150px;
    height: 40px;
    margin-top: 20px;
    margin-bottom: 50PX;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.096);
    color: white;
    cursor: pointer;
}
#button:active{
    background: rgba(0, 0, 0, 0.178);
}