html,
body {
    overflow: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    background-image: url("../images/login-background-image.png");
}

#block-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

    #block-login > .login-block, #login-sso {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;
        margin-top: 20px;
    }

    #block-login > .container-modal-pass {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;
        margin-top: 20px;
    }

.login-input {
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #000;
    margin-bottom: 10px;
    /*border-radius: 4px;*/
    padding-left: 20px;
    font-size: 1em;
    outline: none;
}

    .login-input:active,
    .login-input:focus {
        border: 1px solid #323232;
        outline: none;
    }
    .login-input[type="email"]:disabled {
        cursor: no-drop !important;
        box-shadow: 0 0 0 30px #eee inset !important;
    }

    .login-button {
        width: 100%;
        height: 45px;
        background: #540073;
        box-sizing: border-box;
        border: none;
        color: #fff;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 1em;
        outline: none;
        cursor: pointer;
        margin-bottom: 10px;
    }

.forgot-password-button {
    width: 100%;
    height: 45px;
    background: none;
    box-sizing: border-box;
    border: none;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 1em;
    outline: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.login-text {
    font-size: 16px;
    font-weight: bold;
}

.login-text-subtitle {
    font-size: 14px;
    font-weight: bold;
}

.container-modal, .container-modal-basa {
    min-width: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 20px;
}

.header-modal {
    display: none;
    margin: 30px;
    position: absolute;
}

.img-header {
    height: 40px;
    width: 40px;
    cursor: pointer;
}

/*camera*/
.hidden > div {
    display: none;
}

#div-camera {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.camera-block {
    position: relative;
}

.camera-circle {
    opacity: 0.8;
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    transition: transform 0.2s;
}

    .camera-circle > img {
        width: 40px;
    }

    .camera-circle:hover {
        transform: scale(1.1);
    }

#camera-close-camera {
    top: 10px;
    right: 10px;
    opacity: 0.8;
    cursor: pointer;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100%;
    transition: transform 0.2s;
}

    #camera-close-camera > img {
        width: 40px;
    }

    #camera-close-camera:hover {
        transform: scale(1.1);
    }

/*tablet portrait*/
@media only screen and (min-width: 700px) and (max-width: 959px) {
    #block-login > .login-block, #login-sso {
        min-width: 450px;
    }

    #block-login > .container-modal-pass {
        min-width: 450px;
    }

    .container-modal, .container-modal-basa {
        min-width: 450px;
    }
}
/*large screen*/
@media only screen and (min-width: 960px) {
    #block-login > .login-block, #login-sso {
        min-width: 450px;
    }

    #block-login > .container-modal-pass {
        min-width: 450px;
    }

    .container-modal, .container-modal-basa {
        min-width: 450px;
    }
}

@media only screen and (max-height: 400px) {
    #block-login {
        height: 400px;
    }

}

/* bloco: exibir/ocultar senha */
.btn-show-password {
    width: 10%;
    height: 45px;
    background-color: #fff;
    color: #fff;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    border-left: none;
}

.block-password {
    width: 100%;
    display: flex;
}

.login-input.password {
    width: 90%;
    border-right: none;
}

.icon-password {
    width: 25px;
    transition: opacity .5s;
}

    .icon-password.showpass {
        position: relative;
        top: -1px;
    }

.login-block input {
    box-shadow: 0 0 0 30px white inset !important;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    filter:none;
}

.block-login-voltar {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.login-voltar {
    background: gray;
    border-radius: 27px;
    height: 25px;
    float: left;
    margin-top: 8px;
    margin-right: 8px;
    cursor: pointer;
}

/*bloco para mensagem de erro na digitação da nova senha*/
.login-error-content {
    margin-bottom: 10px;
    align-self: flex-start;
}

.login-error-li-error {
    color: red;
}

.login-error-li-validated {
    color: green
}

.disabled-button {
    filter: grayscale(.5);
}

#ulValidacaoNovaSenha {
    margin-top: -10px;
}