.login-wrapper {
    width:100vw;
    height:100vh;
    background-image: url('../images/login-bg.png');
    background-size: cover;
}

.login-wrapper .overlay {
    position: absolute;
    width:100%;
    height: 100%;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:var(--black);
    opacity: 0.85;
}

.login-wrapper .content {
    position: absolute;
    width:100%;
    height: 100%;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.login-title {
    font-weight: 600;
    font-size: 18px;
    color:var(--black);
    text-align:center;
    margin-bottom:3px;
}

.login-subtitle {
    color:var(--grey);
    text-align:center;
    margin:10px 0 20px 0;
    font-size: 12px;
}

.btn {
    width:100%;
    height:40px;
}
