*{ 
	margin:0px; 
	padding:0px;
	box-sizing: border-box;
    font-family: Verdana;
}

.container {
    display: flex;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
	justify-self: center;
	width: 100%;	
}


	
	
.imagem img {
    width: auto;
    height: 100%;
}

.login {
	width: 100%;
    justify-content: center;
    align-content: center;
	align-items: center;
	position: relative;
}


.logoEmpresa{
	display: flex;
    justify-content: center;
	margin-bottom: 30px;
}

.logoEmpresa img{
	width: auto;
    height: 56px;
}

.txtAcesse{
	font-size: 14px;
	line-height: 140%;
	color:#6C6760;
	margin-bottom: 40px;
	text-align: center;
}

.txtAcesse1{
	font-size: 30px;
    line-height: 120%;
	letter-spacing: 1.2px;
	color:#363330;
	font-weight:600;
}

.txtDdesktop{
	margin-top: 5px;
    display: block;
}


.login-box {
	width: 390px;
    justify-self: center;
}

.input-group {
    margin-bottom: 15px;
	
}


.input-group select{
    width: 100%;
    padding: 12px;
    border: 1px solid #CFCCC9;
    border-radius: 10px;
    font-size: 14px;
	line-height:140%;
	color:#666666;
	gap:12px;
	outline: none;
	
}

.input-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 0px;
}


.input-group::after {
	content: "▼";
    position: absolute;
    transform: translateX(-28px);
    margin-top: 14px;
    pointer-events: none;
    color: #333333;
    font-size: 13px;
}


.input-group input:focus,
.input-group input:active {
    border: 1px solid #B3B0AD;
}

.divlogin_Senha{
	width: 100%;
    padding: 12px;
    border: 1px solid #CFCCC9;
    border-radius: 10px;
	gap:12px;
	display: flex;
    justify-content: space-between;
	margin-bottom:15px;
}

.senha, .loadPageIcon{
	width: 100%;
	border: 0px;
	outline: none;
	font-size: 14px;
	line-height:140%;
	color:#666666;
	background-color:#FFFFFF;
}

.senha:focus,
.senha:active {
	outline: none;
}

.password, .loadPage {
    cursor: pointer;
}
.password img{
	width: 16px;
    height: 16px;
}

.loadPage img{
	width: 12px;
    height: 14px;
	margin-top: 3px;
	margin-right: 2px;
}

.senhaVisivel{
	display:none;
}

.esqueceuSenha {
    display: flex;
    font-size: 14px;
    margin-bottom: 15px;
	color:#01295b;
	justify-content: center;
	margin-top: 20px;
    margin-bottom: 30px;
}

.esqueceuSenhaTxt {
    text-decoration: none;
	cursor:pointer;
}


.divBtn {
	display:flex;
	justify-content: center;
}

.btn {
	display: flex;
    align-items: center;
	justify-content: center;
    width: 390px;
    padding: 10px;
    background: #01295b;
    color: #fff;
    border: 1px solid #01295b;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.btn img {
    width: 23px;
    height: 23px;
	margin-left: 25px;
}



.mensagemAlerta {
    width: 100%;
    padding: 10px;
    font-weight: 600;
    font-size: 10px;
    color: #FFFFFF;
    text-transform: uppercase;
    background-color: #D60056;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.divlogin_SenhaNova{
	width: 100%;
    padding: 12px;
    border: 1px solid #CFCCC9;
    border-radius: 10px;
	gap:12px;
	display: flex;
    justify-content: space-between;
	margin-bottom:15px;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.rodape{
	color: #333333;
    font-size: 10px;
    font-family: Verdana;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    justify-self: anchor-center;
	/* margin-top: 60px; */
	position: absolute;
	bottom: 10px;
}



@media screen and (max-width: 570px) {
	.imagem{
		display: none;
	}
	.txtAcesse {
		text-align: center;
		margin-bottom: 20px;
	}
	
	.txtAcesse1 {
		font-size: 28px;
		display: block;
	}

	.login{
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.login-box {
		width: 100%;
		padding: 20px;
	}
	
	.btn {
		width: 90%;	
	}

	.logoEmpresa {
		margin-bottom: 10px;
	}
	.rodape{
		position:absolute;
		bottom:15px;
		margin-top: 0px;
		font-size: 9px;
		color:#6C6760BF;
		
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	
	}
	
	.txtDdesktop{
		margin-top: 0px;
	}

	
}


.load {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px; 
}

.load .logoEmpresa{
	margin-bottom:0px;
}



.progress-bar {
    width: 114px; 
    height: 4px;
    background: #E7E6E4;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress {
    width: 50px; 
    height: 100%;
    background: #01295b;
    position: absolute;
	animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0% { transform: translateX(-50px); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateX(114px); opacity: 1; }
}



@media screen and (min-width: 571px) and (max-width: 980px){
	.imagem{
		display: none;
	}
	
	.login-box, .btn {
		width: 70%;
	}

	
}

input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: #666666 !important;
    transition: background-color 5000s ease-in-out 0s;
}	




		