body{
    background-image: url(../img/fundorede.png);
    background-size: cover;
}
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;
    color: #fff;
    
}
.login{
    width: 100%;
    
    max-width: 400px;
}
.login__title {
    font-size: 25px;
	font-weight: bold;
	text-align: center;
	color: #014598;
}
.form_inputs{
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1rem;
}
.form_inputs form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}
.form_inputs form span{
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: bold;
    color: #868686;
    margin: .5rem 0rem;
    
}
.form_inputs form span input{
    padding: .5rem;
    border: 1px solid #c0c0c0;
    /* border-color: #868686; */
    border-radius: .5rem;

}
button{
    padding: .5rem 2rem;
    border: unset;
    color: #fff;
    background-color: #014598;
    border-radius: 9999px;
    cursor: pointer;
}

.atendimento{
    display: flex;
    
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin-top: 1rem;
}
.atendimento h6{
	font-size: 1rem;
	font-weight: bold;
    color: #014598;
}
.atendimento .numeros{
    display: flex;
    margin-top: .5rem;
}
.atendimento span{
    display: flex;
    font-size: 15px;
	font-weight: bold;
	color: #014598;
}
.espacamento{
    margin: 0rem .5rem ;
}
.containerAppd_redes{
    max-width: 400px;
    margin-top: 1rem;
    display: flex;
    
    font-weight: bold;
}
.containerAppd_redes .apps{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 50%;
}
.containerAppd_redes .apps p{
    color: #014598;
    margin-right: .5rem;
    
}
.containerAppd_redes .apps span{
    display: flex;
    flex-direction: column;  
}
.containerAppd_redes .apps img{
    width: 6rem;
}
.redes{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.redes p {
    color: #014598;
}
.redes .links a img{
    width: 1.7rem;
}

@media (max-width: 950px){
    body{
        overflow: unset;  
        background-attachment: fixed;
        background-position: center;
    }
    header img {
		width: 50px;
	}
    .mainLogin{
        width: 100%;
        padding: 0;
        max-width: 400px;
    }
    .login__title {
		font-size: 20px;
	}
    
    .atendimento .numeros{
        display: flex;
        margin-top: unset;
    }
    .atendimento .numeros span{
        font-size: 12px;
        margin-top: .5rem;
    }
    .containerAppd_redes{
        width: 100%;
    }
    .containerAppd_redes .apps{
        width: 100%;
        justify-content: center;
    }
    .redes{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .redes p {
		font-size: 12px;
	}

}

@media (max-width: 400px) {

	.mainLogin {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin-top: -3.4rem;
	}

    .form_inputs {
        padding: 0;
    }

	.login_container {
		padding: 0;
		border-radius: 30px 30px 0 0;
	}
	
	.login__title {
		margin-top: 15px;
	}

	.container_mobile_fundo {
		display: flex;
		flex-grow: 2;
	}

	.img_fundo_mobile {
		width: 100%;
		height: auto;
		display: block !important;
	}

	.containerAppd_redes {
		padding: 0 1.5rem;
	}

	.containerAppd_redes .apps p {
		font-weight: bold;
		font-size: 10px;
	}

	.containerAppd_redes .apps img {
		width: 4rem;
	}

	.redes .links a img {
		width: 1rem;
	}


}

/* UTILS */

.d-none {
	display: none;
}

.d-flex {
	display: flex;
}