/* COLO VARIABLES */

:root{
	--primary-color:#0D1936;
	--secondary-color:#535354;
	--background-color:#EFEFEF;
	--shadow-color:rgba(0,0,0,0.1);
	--white-color:#fff;
	--black-color:#000;
	--input-border-color:#E3E4E6;
	--transition-3s:0.3s;
}

/* GLOBAL STYLES */

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppin', sans-serif;
}


.showcase .navbar-bottom img{
	width: 150px;
}

/*Bottom*/
.showcase .navbar-bottom{
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #cfcfcf;
	padding: 25px 0;
}

.showcase .navbar-bottom .naved{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.showcase .navbar-bottom .navs{
	padding: 0 100px;
	}

.navbar-bottom.sticky{
	top: 0;
	background: #fff;
	background: #cfcfcf;
	padding: 25px 0;
	align-items: center;
	border-bottom: 1px solid #0A2940;
	color: #0A2940;
	z-index: 999;

}
.showcase .navbar-bottom .brand-left{
	color: #55BA53;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.5s ease;
}
	.showcase .navbar-bottom .brand-left:hover{
		color: #0A2940;
	
}
.showcase .navbar-bottom .menu-right{
	display: flex;
	list-style: none;
	font-size: 14px;
	font-weight: 600;
}
.showcase .navbar-bottom.sticky .menu-right li:last-child{
	display: none;
}

.showcase .navbar-bottom .menu-right a{
	text-decoration: none;
	display: inline-block;
	padding: 0 20px;
	color: #1A1B1E;
	transition:all 0.5s ease;
}
.showcase .navbar-bottom .menu-right a:hover{
color: #55BA53;
}

/*Navbar Bottom search form*/

.navbar-bottom .search-form{
	position: absolute;
	top: 22%;
	right: 10%;
	background: #f4f4f4;
	width: 350px;
	height: 28px;
	display: flex;
	align-items: center;
	transform: scaleY(0);
	transform-origin: top;
	transition: all 0.5s ease;
}


.navbar-bottom .search-form.active{
	transform: scaleY(1);
}
  .navbar-bottom .search-form input{
	width: 100%;
	height: 100%;
	font-size: 20px;
	border:none;
	background: #f4f4f4;
	color: #1A1B1E;
	padding: 14px;
	text-transform: none;
	outline: none;
}
.navbar-bottom .search-form label{
	cursor: pointer;
	font-size: 30px;
	border: none;
	margin-right: 12px;

}

.navbar-bottom .search-form:hover{
	color: #55BA53;
}



/* login form section */


.wrapper{

	position: relative;
	width: 430px;
	height: 1000px;
	background-color: var(--white-color);
	border-radius: 15px;
	padding: 120px 32px 64px;
	border: 1px solid var(--primary-color);
	box-shadow: 0 8px 15px var(--shadow-color);
	transition: var(--transition-3s);
	top: 30%;
	margin: 5% auto;
	
}
.form-header{

	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items:center;
	justify-content: center;
	width: 140px;
	height: 70px;
	background-color: var(--primary-color);
	border-radius: 0 0 20px 20px;
}

.form-header::before, .form-header::after{
	content: "";
	position: absolute;
	top: 0;
	width: 30px;
	height: 30px;
	
}

.form-header::before{
	left: -30px;
	border-top-right-radius: 50%;
	box-shadow: 15px 0 0 var(--primary-color);
}

.form-header::before{
	left: -30px;
	border-top-left-radius: 50%;
	box-shadow: 15px 0 0 var(--primary-color);
}


/* TITLES */
.titles{
	position: relative;
}
.title-login{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: var(--white-color);
	font-size: 24px;
	transition: var(--transition-3s);
}


/*Forms*/

.login-form{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	transition: var(--transition-3s);
	
}
.input-box{
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 20px 0;	

}

.input-field{
	width: 100%;
	height: 55px;
	font-size: 16px;
	background: transparent;
	color: var(--black-color);
	padding: 0 20px;
	border: 1px solid var(--input-border-color);
	border-radius: 30px;
	outline: none;
	transition: var(--transition-3s);

}

.input-field:focus{
	border:1px solid var(--primary-color);
}
.label{
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	color: var(--secondary-color);
	transition: 0.2s;
	cursor: text;
}

.input-field:focus ~ .label,
.input-field:valid ~ .label{
	top: 0;
	font-size: 14px;
	background-color: var(--white-color);
	color: var(--primary-color);
	padding: 0 10px;
}

.input-field:valid ~ .label{
	color: :var(--secondary-color);
}
.icon{
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	font-size: 20px;
	color: var(--secondary-color);
}

/* FORGOT PASSWORD & TERMS AND CONDITION */

.form-cols{
	display: flex;
	justify-content: space-between;
	font-size: 14px;
}

.col-1{
	display: flex;
	align-items: center;
	gap:6px;
}
.col-2 a{
	text-decoration: none;
	color: black;
	font-size: 20px;
	

}
/* submit button */

.btn-submit{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 50px;
	background-color: var(--primary-color);
	color: var(--white-color);
	font-size: 16px;
	font-size: 16px;
	font-weight: 500;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: var(--transition-3s);
}

.btn-submit:hover{
	gap: 15px;
}

.btn-submit i{
	font-size: 20px;
}
/* SWITCH FORM */
.switch-form{
	text-align: center;
}
.switch-form a{
	font-weight: 500;
}

/* Menu btn
#menu-btn{
	float: right;
	height: 30px;
	align-items: center;
	font-size: 50px;
margin-top: -5px;
display:none;
}
*/

/* RESPONSIVE STYLE */
@media only screen and (max-width: 564px){
	.wrapper{
		margin: 20px;
	}

}

@media (max-width: 997px) {
	
.showcase .navbar-bottom .naved{
display: block;
	margin: 0;
}
.showcase .navbar-bottom .navs{
	padding: 0 20px;
	}
	.showcase .navbar-bottom .menu-right{
	display: block;
	list-style: none;
	font-size: 14px;
	font-weight: 600;
	padding-top: 10px;
}

.showcase .navbar-bottom .menu-right a{
	text-decoration: none;
	display: inline-block;
	padding-top: 20px;
	color: #1A1B1E;
	font-size: 20px;
	font-weight: 600;
}
}