body{
    margin:0px;
    padding:0px;
    background-image: url("4.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment:inherit;
}
.loginbox{
    width: 300px;
    height: 380px;
    background: black;
    color:#fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
   padding: 70px 30px;
    
}


h1{
    margin:0;
    padding:0 0 20px;
    text-align: center;
    font-size: 22px;
}

.loginbox p{
    margin: 0;
    padding: 0;
    font-weight: bold;
}
.loginbox input{
    width: 100%;
    margin-bottom: 20px;

}

.loginbox input[type="text"], input[type="password"]{
    border: none;
    border-bottom:1px solid #fff;
    background: transparent;
    outline:none;
    height: 40px;
    color: #fff;
    font-size: 16px;


}
.loginbox input[type="submit"]{
    border: none;
    outline: none;
    height: 40px;
    background:brown;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
    margin-top: 5px;
}
.loginbox input[type="submit"]:hover{
    cursor:pointer;
    background: #fff;
    color:#000
}
.loginbox input:hover{
    background-color:  #fff;
    color: #000;
    transition: 0.5s;
}

