body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg,#2b343d 10%,#000000);
    font-family: Arial, sans-serif;
}

.box{

    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    padding: 70px 30px;
    
    background-blend-mode: overlay;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.box:hover{
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.user{
    width: 140px;
    height: 140px;
    position: absolute;
    top: -50px;
    left: calc(44% - 44px);
}

h1{
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 22px;
    color: white;
}

p{
    color: #c4c1bc;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

input{
    width: 100%;
    margin-bottom: 10px;
}

 input[type="text"], input[type="password"] ,input[type="email"]
{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: white;
    font-size: 16px;
}

input[type="submit"]
{
    border: none;
    outline: none;
    height: 40px;
    background: #1a3247;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;

}


input[type="submit"]:hover
{
    cursor: pointer;
    background: #192f3d;
}

a
{
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    color: #dcf836;
}


a:hover
{
    color: red;
}
































































