.login-body {
    z-index: 0;
    background-position: center;
    background-size: cover;
    height: 100vh;
    background-image: url("/asserts/bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.login {
    width: 400px;
    height: auto;
    background: #fff;
    padding: 30px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.btn-login {
    padding: 10px;
    margin: 20px 0;
    color: #fff;
    background: #333333;
    border: none;
    cursor: pointer;
}

.btn-login:hover {
    background: #1e1e1e;
}

.login h1 {
    margin-bottom: 40px;
}