/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (tablets, 768px and up) */
@media (max-width: 768px){
	.title-page h1{
		font-size: 28px;
	}

	.description-page p{
		font-size: 14px;
	}
	
	body.framework-login{
		background-size: auto 100%;
	}
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px){
	.navbar-nav .open .dropdown-menu{
		background: #303a44;
	}
	
	.title-page h1{
		font-size: 36px;
	}

	.description-page p{
		font-size: 16px;
	}
	
	body.framework-login{
		background-size: auto 100%;
	}
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px){
	body.framework-login{
		background-size: 100% 100%;
	}
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px){
	body.framework-login{
		background-size: 100% auto;
	}
}