html,
body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    user-select: none;
}

body {
    background-size: cover;
    background: url("../images/background.jpg") no-repeat center;
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background-color: unset !important;
    -webkit-transition-delay: 99999s;
}

.login-screen {
    padding: 2rem;
    display: grid;
    grid-template-rows: 7rem 1fr auto;
    height: 100%;
}

.login-screen > .header {
    display: flex;
    justify-content: space-between;
	max-width: 100%;
	min-width: 0;
}

@media only screen and (max-width: 500px) {
    .login-screen {
        padding: unset;
        display: flex;
        flex-direction: column;
    }

    .login-screen > .header {  
        display: none;
    }
}

.login-screen > .header > img {
    height: 100%;
}

.login-screen > .header > img {
    height: 100%;
}

.login-screen > .middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 22rem;
	margin: 0 auto;
    text-align: center;
}

 /*p-2 rounded text-white d-flex align-items-center justify-content-center*/
.login-screen > .footer {
    border-radius: .25rem;
    color: white;
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    background-color: #f8f9fa!important;
    display: flex;
    flex-direction: column;
}

.login-card > img {
    margin: 0 auto;
    width: 14rem;
}

input,
button {
    height: 2.4rem;
    border: none;
    padding: 0.5rem 1rem;
}

input:focus,
#cmdLogin:focus,
#cmdLogin:hover {
    outline: none;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

input[type="text"],
input[type="password"],
#cmdLogin {
    background-color: rgba(127, 127, 127, 0.15);
    color: #2A2A2A;
}

input[type="text"]:focus,
input[type="password"]:focus,
#cmdLogin:focus,
#cmdLogin:hover {
    background-color: rgba(127, 127, 127, 0.30);
    border: unset !important;
}

input[type="submit"] {
    cursor: pointer;
}


.disabled {
    background: rgba(127, 127, 127, 0.30);
    cursor: unset !important;
}

#informationContainer 
{
	background-color: rgba(0,0,0,0.3);
}