/**{
    margin0;
    padding0;
    box-sizing:border-box;
}
body{
    height:100vh;
    width:100vw;
    background-color:#e1e1e1;
}
.login-form{
    height:470px;
    width:320px;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:#fff;
    border-radius:4px;
}*/



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    background-color: #e1e1e1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../../Content/Img/BgImg.jpg');
    background-size: cover;
    background-position: center;
}

.login-form {
    height: 470px;
    width: 320px;
    position: fixed;
    top: 50%;
    right: 110px; 
    transform: translateY(-50%);
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.login-form h3 {
    margin-top: 50px;
    font-size: 24px;
    color: #333;
}

.login-form p {
    font-size: 14px;
    color: #777;
}

form {
    margin-top: 20px;
}
