.page_page__556_G {
  --gray-rgb: 0, 0, 0;
  --gray-alpha-200: rgba(var(--gray-rgb), 0.08);
  --gray-alpha-100: rgba(var(--gray-rgb), 0.05);

  --button-primary-hover: #383838;
  --button-secondary-hover: #f2f2f2;

  display: grid;
  grid-template-rows: 20px 1fr 20px;
  align-items: center;
  justify-items: center;
  min-height: 100svh;
  padding: 80px;
  grid-gap: 64px;
  gap: 64px;
  font-family: var(--font-geist-sans);
}

@media (prefers-color-scheme: dark) {
  .page_page__556_G {
    --gray-rgb: 255, 255, 255;
    --gray-alpha-200: rgba(var(--gray-rgb), 0.145);
    --gray-alpha-100: rgba(var(--gray-rgb), 0.06);

    --button-primary-hover: #ccc;
    --button-secondary-hover: #1a1a1a;
  }
}

.page_main__nw1Wk {
  display: flex;
  flex-direction: column;
  gap: 32px;
  grid-row-start: 2;
}

.page_main__nw1Wk ol {
  font-family: var(--font-geist-mono);
  padding-left: 0;
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.01em;
  list-style-position: inside;
}

.page_main__nw1Wk li:not(:last-of-type) {
  margin-bottom: 8px;
}

.page_main__nw1Wk code {
  font-family: inherit;
  background: var(--gray-alpha-100);
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 600;
}

.page_ctas__rfsth {
  display: flex;
  gap: 16px;
}

.page_ctas__rfsth a {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 128px;
  height: 48px;
  padding: 0 20px;
  border: none;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

a.page_primary__2CBMe {
  background: var(--foreground);
  color: var(--background);
  gap: 8px;
}

a.page_secondary__jzhTV {
  border-color: var(--gray-alpha-200);
  min-width: 180px;
}

.page_footer__F3MD0 {
  grid-row-start: 3;
  display: flex;
  gap: 24px;
}

.page_footer__F3MD0 a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page_footer__F3MD0 img {
  flex-shrink: 0;
}

/* Enable hover only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  a.page_primary__2CBMe:hover {
    background: var(--button-primary-hover);
    border-color: transparent;
  }

  a.page_secondary__jzhTV:hover {
    background: var(--button-secondary-hover);
    border-color: transparent;
  }

  .page_footer__F3MD0 a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

@media (max-width: 600px) {
  .page_page__556_G {
    padding: 32px;
    padding-bottom: 80px;
  }

  .page_main__nw1Wk {
    align-items: center;
  }

  .page_main__nw1Wk ol {
    text-align: center;
  }

  .page_ctas__rfsth {
    flex-direction: column;
  }

  .page_ctas__rfsth a {
    font-size: 14px;
    height: 40px;
    padding: 0 16px;
  }

  a.page_secondary__jzhTV {
    min-width: auto;
  }

  .page_footer__F3MD0 {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

@media (prefers-color-scheme: dark) {
  .page_logo__ikIZE {
    filter: invert();
  }
}

.login-popup{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1099;
	background-color:rgba(0,0,0,0.6);
	visibility: hidden;
	opacity: 0;
	transition: all 1s ease;
}
.login-popup.show{
	visibility:visible;
	opacity: 1;
}
.login-popup .box{
	background-color:#ffffff;
	width: 835px;
	position: absolute;
	left: 50%;
	top:50%;
	transform:translate(-50%,-50%);
	display: flex;
	flex-wrap: wrap;
	opacity: 0;
	margin-left: 50px;
	/* transition: all 1s ease; */
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;

}
.login-popup.show .box{
	opacity: 1;
	margin-left: 0;
	visibility: visible;
}
.login-popup .box .img-area{
	flex:0 0 50%;
	max-width: 50%;
	position: relative;
	overflow: hidden;
	padding:30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login-popup .box .img-area h1{
	font-size: 30px;
}
.login-popup .box .img-area .img{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-image: url('/assets/img/banner/popup2.jpg');
	background-size: cover;
	background-position: center;
	animation: zoomInOut 7s linear infinite;
	z-index: -1;
}
@keyframes zoomInOut{
	0%,100%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.1);
	}
}
.login-popup .box .form{
	flex:0 0 50%;
	max-width: 50%;
	padding:40px 30px;
}

.login-popup .box .form h1{
	color:#000000;
	font-size: 26px;
	margin:0 0 30px;
}
.login-popup .box .form .form-control{
	height: 45px;
	margin-bottom: 12px;
	width: 100%;
	border:none;
	border-bottom:1px solid #cccccc;
	font-size: 15px;
	color:#000000;
}
.login-popup .box .form .form-control:focus{
	outline: none;
}
.login-popup .box .form label{
	font-size: 15px;
	color:#555555;
}
.login-popup .box .form .btn{
	width: 100%;
	/* background-color: #E91E63; */
  background: linear-gradient(to right, #E20935, #a10322);
	margin-top:10px;
	height: 45px;
	border:none;
	border-radius: 25px;
	font-size: 15px;
	text-transform: uppercase;
	color:#ffffff;
	cursor: pointer;

    font-weight: 600;
    box-shadow: 0 10px 10px 0px rgba(241, 241, 114, 0.3);
    transition: all 0.3s ease;
}
.login-popup .box .form .btn:focus{
	outline: none;
}

.login-popup .box .form .close{
	position: absolute;
	right: 10px;
	top:0px;
	font-size: 30px;
	cursor: pointer;
}
.close
{
	color: #000000 !important;
}

/*responsive*/
@media(max-width: 767px){
	.login-popup .box{
		width: calc(100% - 30px);
	}
	.login-popup .box .img-area{
		display: none;
	}
	.login-popup .box .form{
		flex: 0 0 100%;
        max-width: 100%;
	}
}
.thisicon
{
	position: absolute;
    top: 18px;
    left: 0;
}
.form-group {
  position: relative;
}

.form-group .icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
  z-index: 2;
}

.form-group .form-control {
  padding-left: 40px; /* Add space for icon */
}

