body{
    display:flex;
    justify-content:center;
    align-items:center;
    background: url('user.jpg') right no-repeat;
    background-size: cover;
    height:100vh;

    font-family:Arial;
}

.login-box{
    background:white;
    padding:20px;
    width:400px;
    border-radius:8px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.login-box h2{
    text-align:center;
    margin-bottom:20px;
}

.login-box input{
    width:100%;
    padding:5px;
    margin:8px 0 15px;
    border:1px solid #ccc;
    border-radius:5px;
}

button{
    width:100%;
    padding:10px;
    background:#2b7cff;
    border:none;
    color:white;
    font-size:16px;
    border-radius:5px;
    cursor:pointer;
}

button:hover{
    background:#1a5fd4;
}
