html, body {
    height: 100%;
    margin: 0;
}

body {
	min-height: 510px;
	font-family: Arial;
	background-color: var(--orbe-color-green-400);
}

#content {
	width: 100%;
	display: block;
	background-color: var(--orbe-color-green-400);
}

#content.login {
	width: 100vw;
}

#content.error {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container-authorization {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10%;
	margin-bottom: 10%;
}

.container {
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container-login {
	width: 467px;
	background-color: #FFF;
	padding: 48px;
	margin: 48px 0px;
}

.container-login .logo {
    display: flex;
    justify-content: center;
}

.container-login .logo img {
    width: 138px;
}

.container-login .description {
    padding: 23px 0 11px 0;
}

.container-login .description span {
    font-size: 14px;
    width: 100%;
    text-align: center;
    display: block;
    margin: 3px 0;
}

.container-login .mostrar-senha {
	width: 0px;
}

.container {
	height: 100vh;
}

.bling-form {
	height: 490px !important;
	min-height: 490px !important;
}

.container-login a {
    color: #7CB2D5;
    font-size: 12px;
    text-decoration: none;
	width: 100px;
}

.container-login .submit-login {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.container-login .submit-login button {
    font-size: 11px;
    width: 100px;
    height: 30px;
    cursor: pointer;
}

.container-login .new-account {
    font-size: 12px;
    text-align: center;
    margin-top: 26px;
}

.warning-message {
    position: relative;
    min-height: 40px;
    background-color: #FCF6E9;
    padding: 15px 15px 15px 60px;
    display: none;
	margin-bottom: 20px;
}

.warning-message .fa-exclamation-triangle {
    position: absolute;
    top: 17px;
    left: 17px;
    color: #E3A541;
    font-size: 26px;
}

.warning-message span {
    font-size: 15px;
    color: #666666;
    font-weight: bold;
}

.warning-message p {
    font-size: 12px;
    color: #666666;
    margin: 5px 0;
}

@-webkit-keyframes loading {
    to { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes loading {
    to { -moz-transform: rotate(360deg); }
}
@-ms-keyframes loading {
    to { -ms-transform: rotate(360deg); }
}
@keyframes loading {
    to { transform: rotate(360deg); }
}

.loading {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;

    border-top: 4px solid #CCC;
    border-right: 4px solid #CCC;
    border-bottom: 4px solid #777;
    border-left: 4px solid #777;

    -webkit-animation: loading 1.2s infinite linear;
    -moz-animation: loading 1.2s infinite linear;
    -ms-animation: loading 1.2s infinite linear;
    animation: loading 1.2s infinite linear;

    position: absolute;
    top: 50%;
    left: 50%;
    margin: -20px 0 0 -20px;
    z-index: 101;
}

.loading-small {
    border-width: 3px;
    width: 25px;
    height: 25px;
    top: 64%;
    left: 61%;
}

.container-error {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.container-error h1 {
    margin: 0px 10px 0px 10px;
	color: #FFF;
	font-size: 24pt;
}

.container-error h2 {
    margin-bottom: 0px;
    font-size: 15pt;
	color: #FFF;
}

.container-error p {
    text-align: center;
    line-height: 150%;
    margin: 5px;
	color: #FFF;
	font-size: 12pt;
}

.container-error p:first-of-type {
    margin-bottom: 30px;
	color: #FFF
}

.container-error a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}