*{
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    list-style: none;
    font-family: sans-serif;
}
.loginbox{
    width: 320px;
    height:497px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    padding: 120px 30px;
    border-radius: 20px;
    overflow-y: scroll;
}
.form-box{
    width: 380px;
    height: 480px;
    position: relative;
    margin: 6%  auto;
    background: #fff;
    padding: 5px;
}
#btn{
    top: 0;
    left: 0;
    position: absolute;
    width: 110px;
    height: 100%;
    background: linear-gradient(to right,#ff105f,#ffad06);
    border-radius: 30px;
    transition: .5s;
}

.avatar{
    width: 100px;
    height: 100px;
    position: absolute;
    border-radius: 50%;
    top: 2px;
    left: calc(50% - 50px);
}

h1{
margin: 0;
padding: 0 0 20px;
text-align: center;
font-size: 22px;
}

.loginbox p{
    margin: 0px;
    padding: 0px;
    font-weight: bold;
}
.loginbox input{
    width: 100%;
    margin-bottom: 20px;
}
.loginbox input[type="text"], input[type="password"], input[type="email"]{
    border: none;
    border-bottom: 1px solid #ffffff ;
    background: transparent;
    outline: none;
    height: 40px;
    color: white;
    font-size: 16px;
}
.loginbox button{
    border: none;
    outline: none;
    height: 40px;
    color: #fff;
    background: linear-gradient(to right,#ff105f,#ffc107);;
    font-size: 18px;
    border-radius: 20px;
    width: 232px;
}
.loginbox button:hover{
    cursor: pointer;
    background:  linear-gradient(to right,#ffc107,#4dff06);
    color: #000000;
}
.loginbox a{
    text-decoration: none;
    font-size: 12px;
    line-height: 28px;
    color:darkgrey;
}
