/**
 * Reponsive
 * -----------------------------------------------------------------------------
 */

/* phone-only */
@media only screen and (max-width: 599px) {

.login-box{
	width: 300px;
}

.bg-wave {
	background-image:url(/img/epicore_wave_mobile.jpg);
	background-repeat: no-repeat;
	margin-top: 5%;
	width: 100%;
	height: auto;
}

}

/* tablet-portrait-up */
@media only screen and (min-width: 600px) and (max-width: 899px) {

.bg-wave {
	background-image:url(/img/epicore_wave.jpg);
	background-repeat: no-repeat;
	margin-top: 5%;
	width: 100%;
	height: 430px;
}

}

/* tablet-landscape-up */
@media only screen and (min-width: 900px) {

.bg-wave {
	background-image:url(/img/epicore_wave.jpg);
	background-repeat: no-repeat;
	margin-top: 5%;
	width: 100%;
	height: auto;
}

}

/* desktop-up */
@media only screen and (min-width: 1200px) {
    
}

/* big-desktop-up */
@media only screen and (min-width: 1800px) {

}

