@font-face {
    font-family: 'bebas_neueregular';
    src: url('bebasneue-regular-webfont.woff2') format('woff2'),
         url('bebasneue-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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;
	color:#000;
	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%;
	display: flex;
	flex-direction: column;
    align-items: flex-end;
    justify-content: center;
	background-image: url(images/dektopDarkBg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
	background-position: top;
    padding: 8rem;
}

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

.logo {
	width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body_content {
	width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'bebas_neueregular';
    padding: 3rem;
    background-color: #ffffffde;
}

h1 {
    color: #000;
    font-size: 70px;
    font-weight: 700;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 8px;
	line-height: normal;
	margin: 0;
}


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: #000;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

h5 {
    color: #000;
    font-size: 25px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
	font-weight: normal;
	line-height: 30px;
}

.login {
	width: 182px;
	display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    background: #6778E3;
    font-size: 27px;
    font-weight: normal;
}

.login:hover {
	background: linear-gradient(96.63deg, #3d28c4 0%, #6778E3 100%);
	color: #fff;
}

.cancel {
	width: 182px;
	display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    background: #AB6151;
    font-size: 27px;
    font-weight: normal;
}

.cancel:hover {
	background: linear-gradient(96.63deg, #AB6151 0%, #b4837e 100%);
	color: #fff;
}

.long_btn {
    display: flex;
    width: 250px;
    padding: 0.5rem 1rem;
    align-items: center;
    color: #fff;
    justify-content: center;
    gap: 10px;
	background: linear-gradient(96.63deg, #00BD7C 0%, #00BD7C 100%);
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 34px;
}

.long_btn img {
    width: 25px;
    height: 25px;
}

.btnWrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 2rem 0;
}

footer {
    width: 100%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	background: #00000078;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
    margin: 0;
    margin-bottom: 0;
    gap: 8px;
    font-weight: 100;
    color: #fff;
    text-transform: capitalize;
}

.footerWrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #848484;
  padding: 10px 30px;
}

.copyRight.copyMobile {
  display: none;
}

.socialMediaWrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.socialMediaWrapper a {
  width: 35px;
  height: 35px;
  display: flex;
}

.copyRight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copyRight img {
  width: 34px;
  height: 34px;
}

.copyRight p {
  margin: 0;
  font-size: 12px;
}

.paymentMethod {
  display: flex;
  align-items: center;
  gap: 20px;
}

.paymentMethod img {
  display: flex;
  height: 22px;
  object-fit: contain;
  width: 100%;
}

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

@media (max-width: 999px) {
	.main_wrapper {
		height: 100%;
		justify-content: center;
		background-image: url(images/mobDarkBg.jpg);
		background-position: center;
		padding: 2rem;
	}

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

	.logo  {
	    width: 150px;
	}

	.top_img {
		width: 100%;
	}

	footer p {
    	line-height: normal;
    	font-size: 12px;
	}

	.copyRight {
		display: none;
	}

	.copyRight.copyMobile {
		display: flex;
	}

	footer .footerWrap{
		flex-direction: column;
		gap: 10px;
		padding: 10px 0rem;
		margin-top: 10px;
	}
	.disclaimerText{
		padding: 0.5rem 1rem 0.5rem 1rem;
		margin: 0px;
	}

	h1 {
	    font-size: 50px;
	    line-height: 50px;
	}

	h3 {
		font-size: 22px;
		line-height: 30px;
	}

	h5 {
		font-size: 22px;
	}

	h5 br {
		display: none;
	}

	.btnWrapper {
	    padding: 1rem 0;
	    flex-direction: column;
	    gap: 1rem;
	}
}

@media (max-width: 591px) {
	.copyRight img {
		width: 17px;
		height: 17px;
	}

	.paymentMethod {
		overflow: auto;
		-ms-overflow-style: none; /* IE and Edge */
		scrollbar-width: none; /* Firefox */
	}

	.paymentMethod::-webkit-scrollbar {
		display: none;
	}
}








