@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
	box-sizing: border-box;
	/* font-family: 'Montserrat', sans-serif; */
	font-family: 'Poppins', sans-serif;
}





.nav-container {
	background-color: black;
	color: white;
	display: flex;
	flex-direction: row;
	align-items: center;
	/* justify-content: space-evenly; */
	padding: 30px 18px;
}

/* .nav-container .menu-btn-container {
    position: absolute;
    left: 10px;

} */

.nav-container a {
	all: unset;
	cursor: pointer;

}


.nav-container .search-bar {
	position: absolute;
	border: 1px solid black;
	display: flex;
	flex-direction: row;
	left: 50%;

	transform: translateX(-50%);

}

.nav-container .shop-name-container {
	padding-left: 30px;
	position: absolute;
	font-size: 25px;
	font-weight: bold;
	letter-spacing: 8px;

}

.nav-container .search-bar input {

	border: none;
	width: 460px;
	padding: 5px;

}

.nav-container .search-bar input:focus {

	outline: none;
}


.nav-container .search-bar i {
	/* height: 100%;
    width: 100%; */
	color: black;
	background-color: white;
	display: flex;
	align-items: center;
	padding: 10px;

	border: 1px solid white !important;
	/* background-color: black; */
	/* background-color: white; */
}


.form-container .warning {
	color: red;
	padding: 10px;
	font-size: 15px !important;
	display: none;
}

.form-container .warning.show {
	color: red;
	padding: 10px;
	font-size: 15px !important;
	display: block;
}

#login-result {
	color: crimson;
	font-size: 17px !important;
}

#result {
	color: crimson;
	font-size: 17px !important;
}

.nav-container .actions-container {
	position: absolute;
	right: 40px;
	display: flex;
	flex-direction: row;
	gap: 18px;
	font-size: 20px;
}


body {
	background-image: url(bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.content-container .container h1 {
	font-weight: bold;
	margin: 0;
}

.content-container .container h2 {
	text-align: center;
}

.content-container .container p {
	font-size: 14px;
	font-weight: 100;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

.content-container .container span {
	font-size: 12px;
}

.content-container .container a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

.content-container .container button {
	border-radius: 20px;
	/* border: 1px solid #FF4B2B;
	background-color: #FF4B2B; */
	border: 1px solid black;
	background-color: black;

	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

.content-container .container button:active {
	transform: scale(0.95);
}

button:focus {
	outline: none;
}

button.ghost {
	background-color: transparent;
	border-color: #FFFFFF;
}

.content-container .container form {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
}

.content-container .container input {
    background-color: #eee;
    border: none;
    padding: 12px 35px 12px 15px; /* Added extra padding for the toggle button */
    margin: 8px 0;
    width: calc(100% - 45px); /* Adjusted width to accommodate the toggle button */
}

.password-toggle-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}




.container {
	background-color: #fff;
	border-radius: 30px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
		0 10px 10px rgba(0, 0, 0, 0.22);
	position: relative;
	overflow: hidden;
	width: 768px;
	max-width: 100%;
	min-height: 480px;
	margin-top: 100px;
	margin-bottom: 100px;
}

.container.hide {
	display: block;
}

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
	background-color: red !important; 
}

.container.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {

	0%,
	49.99% {
		opacity: 0;
		z-index: 1;
	}

	50%,
	100% {
		opacity: 1;
		z-index: 5;
	}
}








.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;







}

.container.right-panel-active .overlay-container {
	transform: translateX(-100%);
}

.overlay {


	/*background: -webkit-linear-gradient(to right, #000000, #333333);*/
	background: linear-gradient(to right, #1A374D, #5e7382);

	/* background: #FF416C; */
	/* background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
	background: linear-gradient(to right, #FF4B2B, #FF416C); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}







.container.right-panel-active .overlay {
	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}




.overlay-left {
	transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

.container.right-panel-active .overlay-right {
	transform: translateX(20%);
}

.social-container {
	margin: 5px 0;
}

.social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}

footer {
	background-color: #222;
	color: #fff;
	font-size: 14px;
	bottom: 0;
	position: fixed;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 50;
}

footer p {
	margin: 10px 0;
}

footer i {
	color: red;
}

footer a {
	color: #3c97bf;
	text-decoration: none;
}






























#signInExitBtn {
	position: absolute;
	top: 0;
	left: 0;
	padding: 15px;
}

.overlay-login {


	position: fixed;

	width: 100vw;
	height: 100vh;


	z-index: 999;
	background-color: rgba(0, 0, 0, 0.5);
	height: 1450px;
	width: 100%;
	display: flex;
	top: -50px;


}

.overlay-login.hide {
	display: none;

}


.overlay-login .container {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
		0 10px 10px rgba(0, 0, 0, 0.22);
	position: absolute;

	overflow: hidden;
	width: 768px;
	max-width: 100%;
	min-height: 480px;

	left: 50%;
	top: 50px;
	transform: translateX(-50%);
}

.overlay-login .container.hide {
	display: block;
}





.overlay-login .container h1 {
	font-weight: bold;
	margin: 0;
}

.overlay-login .container h2 {
	text-align: center;
}

.overlay-login .container p {
	font-size: 14px;
	font-weight: 100;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

.overlay-login .container span {
	font-size: 12px;
}

.overlay-login .container a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

.overlay-login .container button {
	border-radius: 20px;
	/* border: 1px solid #FF4B2B;
	background-color: #FF4B2B; */
	border: 1px solid black;
	background-color: black;

	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

.overlay-login .container button:active {
	transform: scale(0.95);
}

.overlay-login button:focus {
	outline: none;
}

.overlay-login button.ghost {
	background-color: transparent;
	border-color: #FFFFFF;
}

.overlay-login .container form {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
}

.overlay-login .container input {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
}



.overlay-login .form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.overlay-login .sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

.overlay-login .container.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.overlay-login .sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.overlay-login .container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {

	0%,
	49.99% {
		opacity: 0;
		z-index: 1;
	}

	50%,
	100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-login .overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.overlay-login .container.right-panel-active .overlay-container {
	transform: translateX(-100%);
}

.overlay-login .overlay {



	background: #000000;
	background: -webkit-linear-gradient(to right, #000000, #333333);
	background: linear-gradient(to right, #000000, #333333);

	/* background: #FF416C; */
	/* background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
	background: linear-gradient(to right, #FF4B2B, #FF416C); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}









.overlay-panel .head {
	margin-top: -180px !important;
	text-align: start;
}



.overlay-panel .body {}

.overlay-panel .contact-info {
	all: unset;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;

}

.overlay-panel .contact-info li {

	display: flex;
	flex-direction: row;
	gap: 10px;
	font-size: 20px;
	margin-left: -90px;


}



/* .name-input-field {
	display: flex;
	flex-direction: row;
} */

 