body{
    background-image: url(../img/fundousuario.png);
    background-size: cover;
    overflow: hidden;
    
}
header {
    position: relative;
}
.mainLogin{
    padding: 0 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: calc(4.3125rem + 2rem); /*altura do header mais 2 rem*/
    height: 100vh;
}
.mainLogin_imageMobile {
    width: 100%;
    height: auto;
}
.login{
    width: 100%;
    max-width: 400px;
}
.title_desktop {
    font-size: 2rem;
    color: #014598;
    font-weight: bold;
}
.form_inputs{
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1rem;
}

.login__title {
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	color: #014598;
}
.form_inputs form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem;
}
.form_inputs form span{
    display: flex;
    flex-direction: column;
    margin:1rem 0rem;
    width: 100%;
    font-size: 1rem;
    color: #868686;
    font-weight: bold;
}
.form_inputs form span input{
    border: 1px solid #c0c0c0;
    border-radius: .5rem;
    padding: .5rem;

}
button{
    padding: .5rem 2rem;
    border: unset;
    color: #fff;
    background-color: #014598;
    border-radius: 9999px;
    cursor: pointer;
}

.atendimento{
    display: flex;
    color: #014598;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}
.atendimento h6{
    font-size: 1rem;
    font-weight: bold;
}
.atendimento .numeros{
    display: flex;
    margin-top: .5rem;
}
.atendimento span{
    display: flex;
}
.espacamento{
    margin: 0rem .5rem ;
}
.containerAppd_redes{
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin-top: 1rem;
    color: #014598;
    font-weight: bold;
}
.containerAppd_redes .apps{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.containerAppd_redes .apps p{
    margin-right: .5rem;
    
}
.containerAppd_redes .apps span{
    display: flex;
    flex-direction: column;  
}
.containerAppd_redes .apps img{
    width: 6rem;
}

.redes{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
.redes{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
  }
.redes .links a img{
    width: 1.7rem;
  }
@media (max-width: 950px){
    body{
        overflow: unset;  
        background-attachment: fixed;
        background-position: center;
    }
    .mainLogin{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: end;
        width: 100%;
        max-width: 400px;
        padding: 0;
        margin-top: 0;
        height: 100vh;
    }

    .login__title {
        font-size: 20px;
    }

    .title_desktop {
        display: none;
    }
    .title_mobile {
        display: block;
    }
    .form_inputs {
        border-radius: 1rem;
        padding: 1rem 1rem 0 1rem;
    }
    .atendimento .numeros{
        display: flex;
    }
    .atendimento .numeros span{
        font-size: 12px;
        margin-top: .5rem;
    }
    .espacamento{
        display: block;
    }
    .containerAppd_redes{
        width: 100%;
        flex-direction: column;
    }
    .containerAppd_redes .apps{
        width: 100%;
        justify-content: center;
    }
    .containerAppd_redes .apps img{
        width: 4rem;
    }
    .redes{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: .5rem;
    }
}


@media (max-width: 400px) {

	.mainLogin {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin-top: 0;
	}

	.login_container {
		padding: 0;
		border-radius: 30px 30px 0 0;
	}
	
	.login__title {
		margin-top: 0;
	}

	.container_mobile_fundo {
		display: flex;
		flex-grow: 2;
	}

	.img_fundo_mobile {
		width: 100%;
		height: auto;
		display: block !important;
	}

    .form_inputs {
        border: 1px solid #c0c0c0;
        border-radius: 1rem 1rem 0 0;
    }



}

/* UTILS */

.d-none {
	display: none;
}

.d-flex {
	display: flex;
}