
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css");



html, body {
	width: 100%;
	height: 100vh;
	text-align: left;
	font-size: 14px;
	font-family: Outfit, sans-serif;
	color: #000;
	margin: 0px 0px 0px 0px;
	border: 0px;
	padding: 0px;
	background: #2f3341;
	overflow: hidden;
	height: -webkit-fill-available;
}





.container {
 	max-width: 1200px;
 	border: 0px;
 	margin: 0px auto;
 	position: relative;
}



.red {
	background: #ff0060; 
}

.blue {
	background: #00a2ff; 
}

.green {
	background: #00ff9c; 
}

:focus {
	outline: none !important;
}

* {
	box-sizing: border-box;
}

img {
	min-width: 100%;
}






#sliderContainer {
	position: absolute;

	width: 100%;
	height: 100%;
	height: 100vh;
	z-index: 1;
}



slick-track {
  display: flex !important;
}

.slick-slide {
  display: flex !important;
  height: 100% !important;
}

.slide {
  height: 100%;
}

.slick-slide img {
  object-fit: cover !important;
  height: 100% !important;
}

.slick-list {
  display: flex !important;
  height: 100% !important;
}



								      /*****************
								      // -----------------
								      // LOGIN / SIGNUP PAGE
								      // _________________
								      // *****************/

#loginLogoContainer {
	min-width: 340px;
	max-width: 340px;
	text-align: left;
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	margin-left: 60px;
	z-index: 10 !important;
	background-color:rgba(0,0,0,0.5);
	position: absolute;
}

.loginLogo {
	width: 240px;
}







#loginLogoContainer h1 {
	text-align: left;
	font-size: 22px;
	font-weight: 500;
	color: #fff;
}

#loginLogoContainer h2 {
	text-align: left;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
}


#loginLogoContainer .formButton {
	display: inline-block;
	border: none;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	outline: none;
	overflow: hidden;
	position: relative;
	-webkit-appearance: none;
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	background-color: #7b20c2;
	padding: 16px 40px;
	margin: 0;
	border-radius: 2px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	text-decoration: none;
}


#loginLogoContainer .formButton:hover {
	background-color: #03005c;

}








