.login-background {
    background: url("login-background.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.login-overlay {
    background-color: #2980b9;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.login-body {
    margin-top: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login-box-center {
    width: 320px;
    padding: 10px;
    background: #fff;
    border-radius: 3px;
    z-index: 1;
}


.text-login {
    color: #005E57;
    width: 100%;
    padding: 6px 10px;
    border-radius: .25em;
    border: 1px solid #eaeaea;
    font-size: 14px;
    box-sizing: border-box;
    letter-spacing: 1px;

    /*background: var(--bg-secondary);*/
}

.text-login:focus {
    border-color: #005E57;
    transition: 0.3s;
    outline: none;
}