*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: url("Design-Build-Construction-Chad-Fisher-Construction-900x900.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: aliceblue;
    width: 250px;
    height: 400px;
    backdrop-filter: blur(50px);
    display: flex;
    flex-direction: column;
    margin-top: 10%;
    background: rgb(58, 11, 87);
}



.title{
    margin-top: 20px;
    margin-bottom: 10px;
}

.name{
    position: relative;
    left: -65px;
    color: aqua;
    animation: slideleft  2s normal .2s ease forwards ease-in;
}

.contain{
    display: flex;
    flex-direction: column;
}

.contain label{
    padding-top: 20px;
    /*transform: translateY(20px);*/
}
/*
.contain label:hover{
    transform:translateY(0px);
}
*/
.contain input{
    background: none;
    outline: none;
    border: 0px solid transparent;
    border-bottom: 2px solid black;
    width: 200px;
    height: 25px;
}

.contain button{
    margin-top: 20px;
    background: transparent;
    border-radius: 2px;
    border: 2px solid #fff;
    color: #16f;
}