html, body {
	height: 100%;
}

* {
	box-sizing: border-box;
}

body{
	background: #091417;
    color: #FFFEE1;
    font-weight: normal;
    font-size: 14px;
    margin: 0;
    padding: 0;
    font: 14px/150% "Open Sans", sans-serif !important;
}


a{
	color:#fff;
	text-decoration: none;
	cursor: pointer;
	
	-webkit-transition: color 0.1s linear 0s;	
	   -moz-transition: color 0.1s linear 0s;
		 -o-transition: color 0.1s linear 0s;
		    transition: color 0.1s linear 0s;
}

a:hover,
a:active,
a:focus{
	outline: 0;
	text-decoration:none;
}

a img {
	border: none;
}

a > img {
	vertical-align: bottom;	
}

img {
	max-width: 100%;	
}

strong {
  	font-weight: 500;
}

p {
	margin: 0 0 30px;
}

.main_wrapper {
	width: 100%;
    height: 100%;
    /* min-height: 950px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-image: url(images/desktopBg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2rem;
    padding-top: 7rem;
    padding-left: 6rem;
    /* overflow-y: scroll; */
    background-position: center 85%;
}

.top_img {
	width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1rem;
}

.logo {
	width: 240px;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    position: absolute;
    left: 3%;
    top: 4%;
}

.body_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h4 {
    color: #FFFEE1;
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 13px;
	text-shadow: 2px 2px #000;
}

h3 {
    color: #FFFEE1;
    font-size: 70px;
    font-weight: bold;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 13px;
	line-height: normal;
}

h5 {
    color: #3D1CBF;
	font-size: 70px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
	line-height: normal;
}

.login {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 25px 50px;
    border-radius: 35.594px;
    background: linear-gradient(180deg, #FDE215 0%, #FBB919 100%);
    text-transform: uppercase;
    font-size: 32.554px;
	color: #0F0635;
}

.login:hover {
	background: linear-gradient(96.63deg, #3d28c4 0%, #6778E3 100%);
}
.terms {
	/*display: none;*/
	width: 100%;
	display: flex;
	position: absolute;
    bottom: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 15px;
    background-color: #00000070;
    padding: 5px;
}

.football_img, .cricket_img {
	width: 70%;
}

.contentText {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-bottom: 5px;
}


/* ==================================================
   Responsive Code
================================================== */

@media (min-width: 1600px) {
	.top_img {
	    width: 65%;
	}
}

@media (min-width: 1000px) {
	.body_content.mobile {
		display: none;
	}
}

@media (max-width: 999px) {
	.main_wrapper {
		height: 100%;
/*		min-height: 950px;*/
/*		justify-content: flex-start;*/
    	justify-content: center;
/*		background-image: url(images/mobDarkBg.png);*/
		background-image: url(images/mobileBg.jpg);
		background-position: center bottom;
		padding: 0;
		position: relative;
	}

	.body_content {
		width: 100%;
		align-items: center;
	}

	.body_content.mobile {
	    height: 100%;
	    justify-content: space-between;
		padding-top: 4rem;
    	padding-bottom: 10px;
	}

	.body_content.desktop {
		display: none;
	}

	.logo  {
	    display: flex;
	    width: 110px;
	    padding-bottom: 1rem;
	    /*position: absolute;
	    top: 10px;*/
	}

	.top_img {
		width: 35%;
	}

	h3 {
	    font-size: 36px;
	    margin-bottom: 15px;
	}

	h5 {
	    font-size: 31px;
	    margin-bottom: 20px;
	}

	.login {
		padding: 8px 25px;
		font-size: 17.856px;
	}

	.terms {
		display: flex;
		text-align: center;
		position: static;
/*		bottom: 10px;*/
		padding: 0;
		padding-bottom: 0px;
		background-color: transparent;
	}

	.football_img, .cricket_img {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

/* @media (max-width: 591px) {

} */








