@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700&display=swap');

/* || Estilos gerais */
body {
    font-family: 'Noto Sans', sans-serif;
    color: #040404;
}

#bg_image {
  	position: fixed;
  	top: 0;
  	left: 0;
  	min-width: 100%;
  	min-height: 100%;
}

.container-body{
  	position: relative;
}
/* || Logo */
.logo{
  	max-width: 300px;
}
.top{
	margin: 50px 100px 0px 100px
}

/* || Área de login */

.container-login{
  	background-color: #FFFFFF;
  	max-width: 300px;
	padding: 30px 64px;
	float: right;
	margin-right: 80px;
	text-align: justify;
}
.title{
  	font-style: normal;
 	font-weight: 500;
  	font-size: 24px;
}
.span-titulo{
	font-weight: bold;
	font-size: 16px;
}
.span-descricao{
	font-weight: 400;
	font-size: 18px;
	color: #666666;
}

#formlogin{
	margin-top: 24px;
}
.input-login{
    border-radius: 4px;
    border: 1px solid #BEBEBE;
    width: 100%;
    height: 40px;
    text-indent: 1em;
	margin-top: 8px;
	margin-bottom: 30px;
}
.input-login::placeholder{
	color: #666666;
}
/* || Botőes de login */
.btn-primary{
	color: #F8F8F8;
    border-radius: 4px;
    border: 1px solid #0063FF;
    background-color: #0063FF;
    padding: 0 0.8em;
    width: 100%;
    height: 40px;
    font-weight: bold;
	margin-bottom: 24px;
	font-size: 18px;
}
.btn-primary:hover{
	cursor: pointer;
	border: 1px solid #6e9deb;
    background-color: #6e9deb;
}
.btn-secondary{
	color: white;
    border-radius: 4px;
    border: 1px solid black;
    background-color: black;
    padding: 0 0.8em;
    margin: 15px auto;
    height: 40px;
    font-weight: bold;
	display: block;
	width: 150px;
}
.btn-secondary:hover{
	cursor: pointer;
	border: 1px solid #3f3f3f;
    background-color: #3f3f3f;
}

@media (min-width: 1400px) {
	.container-login{
		margin-right: 120px;
	}
}
@media (max-width: 930px) {
	.container-login{
		margin-top: 24px;
	}
}
@media (max-width: 576px) {
	.container-login{
		margin-right: 20px;
	}
}
@media (max-width: 499px) {
	.top{
		margin: 30px 0px 10px 0px;
	}
	/* centralizar logo */
	.logo{
		display: block;
		margin: auto;
	}
	/* centralizar caixa de login */
	.container-login-mobile{
		display: flex;
		justify-content: center;
	}
	.container-login{
		margin: 15px;
		width: 230px;
		padding: 35px;
	}
	.btn-primary{
		font-size: 14px;
	}
}