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%;
/*    min-height: 950px;*/
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	background-image: url(images/dektopDarkBg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
	padding: 2rem;
	padding-top: 6rem;
	padding-left: 8rem;
	/*overflow-y: scroll;*/
}

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

.logo {
	width: 240px;
    display: flex;
    align-items: center;
	padding-bottom: 3rem;
}

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

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: 30px;
    font-weight: normal;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 8px;
	text-shadow: 2px 2px #000;
}

h5 {
    color: #FFFEE1;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
    text-align: center;
	font-weight: 100;
	text-shadow: 2px 2px #000;
}

.login {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px 30px;
	background: linear-gradient(96.63deg, #6778E3 0%, #5D47E4 100%);
	border-radius: 8px;
	font-size: 20px;
}

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

.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;
}

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;
}

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

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

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

	.logo  {
	    width: 150px;
		padding-bottom: 7px;
	}

	.top_img {
		width: 55%;
	}

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

@media (max-width: 591px) {

}








