*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    position: relative;
    background:black;
    display:flex;
    justify-content: center;
}
.body-image{
    position:fixed;
    height:100%;
    width:100%;
    opacity: 0.4;

}
.body-image img{
    position:absolute;
    height:100%;
    width:100%;
    object-fit:cover;
    object-position: center;

}
.name{
    color: orange;
    font-size: 65px;
    font-weight: bold;
    z-index: 1;
    opacity: 1;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
}
form{
    z-index: 1;
    position: absolute;
    height:600px;
    width:330px;
    box-shadow:inset 0 0 1px hsla(0, 0%, 100%, .6), 0 0.5em 1em rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    top:100px;
    border-radius: 10px;
    
}
form h1{
    position:relative;
    background: rgba(189, 137, 137, 0.6);
    width:100%;
    display: flex;
    color: red;
    font-weight: bold;
    font-size: 28px;
    left:0px;
    text-transform: uppercase;
    justify-content: center;
    align-items: last baseline;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 10px 10px 0px 0px;
}
form input{
    border:none;
    padding:12px 20px;
    width:90%;
    left:5%;
    outline:none;
   position:relative; 
   margin-bottom:15px;
   border-radius: 5px;
}
form p{
    color: white;
    position: relative;
}
form p1{
    color: white;
    position: relative;
    left: 15%;
}
form p2{
    color: yellow;
    position: relative;
    left: 5%;
}
form p3{
    position:relative;
    background:transparent;
    width: 100%;
    color:white;
    font-size: 16px;
    left:5%;
}
form p3 a{
    color: red;
    
}
form button{
    border: none;
    outline: none;
    bottom:30px;
    left:10%;
    width: 80%;
    height: 45px;
    position: absolute;
    background-color: blueviolet;
    border-radius: 50px;
}