


body {
  overflow: hidden;
}

.container {
  position: relative;
  width: 100%;
  background-color: rgb(204 204 204 / 45%);
  min-height: 100vh;
  overflow: hidden;
}

.forms-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.signin-signup {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 75%;
  width: 50%;
  transition: 1s 0.7s ease-in-out;
  display: grid;
  grid-template-columns: 1fr;
  z-index: 5;
}

form.sign-up-form {
  opacity: 0;
  z-index: 1;
}

form.sign-in-form {
  z-index: 2;
}

.title {
  font-size: 2.2rem;
  color: #444;
  margin-bottom: 10px;
}

.input-field {
  max-width: 380px;
  width: 100%;
  background-color: #f0f0f0;
  margin: 10px 0;
  height: 55px;
  border-radius: 55px;
  display: grid;
  grid-template-columns: 15% 85%;
  padding: 0 0.4rem;
  position: relative;
}

.input-field i {
  text-align: center;
  line-height: 55px;
  color: #acacac;
  transition: 0.5s;
  font-size: 1.1rem;
}

.input-field input {
  background: none;
  outline: none;
  border: none;
  line-height: 1;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.input-field input::placeholder {
  color: #aaa;
  font-weight: 500;
}

.social-text {
  padding: 0.7rem 0;
  font-size: 1rem;
}

.social-media {
  display: flex;
  justify-content: center;
}

.social-icon {
  height: 46px;
  width: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.45rem;
  color: #333;
  border-radius: 50%;
  border: 1px solid #333;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-icon:hover {
  color: #6beb44;
  border-color: #6bff7e;
}

.btn {
  width: 150px;
  background-color: #4270dc;
  border: none;
  outline: none;
  height: 49px;
  border-radius: 49px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.5s;
}

.btn:hover {
  background-color: #3bf05f;
}
.panels-container {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.container:before {
  content: "";
  position: absolute;
  height: 2000px;
  width: 2000px;
  top: -10%;
  right: 48%;
  transform: translateY(-50%);
  /* background-image: linear-gradient(-45deg, #ffa703 0%, #ec832d 100%); */
  background-image: linear-gradient(-45deg, #ff0d012e 0%, #ff0d0100 100%);
  transition: 1.8s ease-in-out;
  border-radius: 50%;
  z-index: 6;
}

.image {
  width: 100%;
  transition: transform 1.1s ease-in-out;
  transition-delay: 0.4s;
}

.panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
  text-align: center;
  z-index: 6;
}

.left-panel {
  pointer-events: all;
  padding: 3rem 17% 2rem 12%;
}

.right-panel {
  pointer-events: none;
  padding: 3rem 12% 2rem 17%;
}

.panel .content {
  color: #fff;
  transition: transform 0.9s ease-in-out;
  transition-delay: 0.6s;
}

.panel h3 {
  font-weight: 600;
  line-height: 1;
  font-size: 1.5rem;
}

.panel p {
  font-size: 0.95rem;
  padding: 0.7rem 0;
}

.btn.transparent {
  margin: 0;
  background: none;
  border: 2px solid #fff;
  width: 130px;
  height: 41px;
  font-weight: 600;
  font-size: 0.8rem;
}

.right-panel .image,
.right-panel .content {
  transform: translateX(800px);
}

/* ANIMATION */

.container.sign-up-mode:before {
  transform: translate(100%, -50%);
  right: 52%;
}

.container.sign-up-mode .left-panel .image,
.container.sign-up-mode .left-panel .content {
  transform: translateX(-800px);
}

.container.sign-up-mode .signin-signup {
  left: 25%;
}

.container.sign-up-mode form.sign-up-form {
  opacity: 1;
  z-index: 2;
}

.container.sign-up-mode form.sign-in-form {
  opacity: 0;
  z-index: 1;
}

.container.sign-up-mode .right-panel .image,
.container.sign-up-mode .right-panel .content {
  transform: translateX(0%);
}

.container.sign-up-mode .left-panel {
  pointer-events: none;
}

.container.sign-up-mode .right-panel {
  pointer-events: all;
}

@media (max-width: 870px) {
  .container {
    min-height: 800px;
    height: 100vh;
  }
  .signin-signup {
    width: 100%;
    top: 95%;
    transform: translate(-50%, -100%);
    transition: 1s 0.8s ease-in-out;
  }

  .signin-signup,
  .container.sign-up-mode .signin-signup {
    left: 50%;
  }

  .panels-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 2fr 1fr;
  }

  .panel {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 2.5rem 8%;
    grid-column: 1 / 2;
  }

  .right-panel {
    grid-row: 3 / 4;
  }

  .left-panel {
    grid-row: 1 / 2;
  }

  .image {
    width: 200px;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.6s;
  }

  .panel .content {
    padding-right: 15%;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.8s;
  }

  .panel h3 {
    font-size: 1.2rem;
  }

  .panel p {
    font-size: 0.7rem;
    padding: 0.5rem 0;
  }

  .btn.transparent {
    width: 110px;
    height: 35px;
    font-size: 0.7rem;
  }

  .container:before {
    width: 1500px;
    height: 1500px;
    transform: translateX(-50%);
    left: 30%;
    bottom: 68%;
    right: initial;
    top: initial;
    transition: 2s ease-in-out;
  }

  .container.sign-up-mode:before {
    transform: translate(-50%, 100%);
    bottom: 32%;
    right: initial;
  }

  .container.sign-up-mode .left-panel .image,
  .container.sign-up-mode .left-panel .content {
    transform: translateY(-300px);
  }

  .container.sign-up-mode .right-panel .image,
  .container.sign-up-mode .right-panel .content {
    transform: translateY(0px);
  }

  .right-panel .image,
  .right-panel .content {
    transform: translateY(300px);
  }

  .container.sign-up-mode .signin-signup {
    top: 5%;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 570px) {
  form {
    padding: 0;
  }

  .image {
    display: none;
  }
  .panel .content {
    padding: 0.5rem 1rem;
  }
  .container {
    padding: 1.5rem;
  }

  .container:before {
    bottom: 72%;
    left: 50%;
  }

  .container.sign-up-mode:before {
    bottom: 28%;
    left: 50%;
  }
}

/**new */
body{
  background: rgba(0,0,0,0.5) no-repeat center center fixed; 
  background-image: url('../../images/bg_field-1-.jpg?v=2'); 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

	.container{
		background-color: rgb(204 204 204 / 0%);
	}
	.container:before{
		background-image: linear-gradient(-45deg,#ff5467 0%, #e9041e 100%);
		box-shadow: 0px 8px 50px rgb(0 0 0 / 40%);
		opacity: 0.95;
		transform: translateY(-45%);
	}
	.clsDivPanel{
		background: rgb(0 0 0 / 50%);
		border-radius: 40px 0px 0px 0px;
		border: 0px solid rgb(0 0 0 / 50%);
		-webkit-box-shadow: 0px 8px 50px rgb(0 0 0 / 30%);
		box-shadow: 0px 8px 50px rgb(0 0 0 / 30%);
		margin: 0;
		width: 100%;
		max-width: 472px;
		min-width: 472px;
		height: 360px;
	}

	.clsMain{
		margin-top: 0;
		height: 100vh;
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
		margin: unset;
		padding-left: unset;
		padding-right: unset;
	}
	.form-group {
		opacity: 1;
		background: rgb(0 0 0 / 50%);
		padding: 26px;
		border-radius: 40px 0px 0px 0px;
		border: 0px solid rgb(0 0 0 / 50%);
		-webkit-box-shadow: 0px 8px 50px rgba(0,0,0,0.3);
		box-shadow: 0px 8px 50px rgba(0,0,0,0.3);
		width: 100%;
		min-width: 420px;
		max-width: 500px;

	}
	.form-group_title{
		color: #fff;
		line-height: 0.7em;
		font-weight: 700;
	}
	.cls_show_password{
		color: #FFF;
		font-weight: 700;
		position: absolute;
		top: 23px;
		cursor: pointer;
		font-size: 10px;
		letter-spacing: 2px;
		transition: all 0.3s;
		right: 5%;
	}
	.cls_show_password:hover{
		color: #ccc;
	}
	.cls_btn_signin{
		width: 100%;
		max-width: 220px;
		height: 100px;
		background: rgb(18,51,62);
		color: #fff;
		border: 0;
		border-radius: 0;
		font-size: 10px;
		font-weight: 700;
		letter-spacing: 2px;
		padding: 0;
		display: flex;
		flex: 1;
		justify-content: center;
		align-items: center;
		transition: all 0.4s;
	}

	.cls_btn_signin:hover{
		background: rgb(18,51,62);
		transform: scale(1.1) translate3d(-10px, -4px, 10px);
    transition: all 0.4s;
	}
	/* .cls_input_text .label-text{
		color: #fff;
		text-transform: uppercase;
		font-size: 10px;
		-moz-transform: translateY(-28px);
		-ms-transform: translateY(-28px);
		-webkit-transform: translateY(-28px);
		transform: translateY(-28px);
		font-weight: 700;
		letter-spacing: 2px;
	}
	.cls_input_text input:valid+ .label-text{
		font-size: 10px;
		-moz-transform: translateY(-55px);
		-ms-transform: translateY(-55px);
		-webkit-transform: translateY(-55px);
		transform: translateY(-55px);
	}
	.cls_input_text input:focus + .label-text ,
	.cls_input_text .cls_text_label + .label-text ,
	.cls_textarea textarea:focus + .label-text{
		font-size: 10px;
		-moz-transform: translateY(-55px);
		-ms-transform: translateY(-55px);
		-webkit-transform: translateY(-55px);
		transform: translateY(-55px);
	}
	.cls_input_text input, 
	.cls_input_text .cls_text_label{
		border-bottom: 1px solid #fff;
	}

	.cls_input_text input{
		color: #fff;
		padding: 2px 0px;
		width:90%;
		font-size: 27px;
		box-sizing: border-box;
	}

	
	.cls_input_text input:focus ~ .cls_show_password{
		right: 0;
	}
	 */
	.cls_error_sign_in{
		color: #ff0d01;
		font-size: 13px;
		font-weight: 700;
		display: block;
		height: 34px;
		margin-top: -18px;
    text-align: center;
	}
	.cls_message_error{
		text-align: center;
		color: #ff0d01;
		display: block;
		margin-top: -23px;
		position: relative;
		font-size: 13px;
		font-weight: 700;
    height: 18px;
	}

	.cls_text_copy_right{
		position:fixed;
		bottom: 5px;
		left: 12px;
		color:#fff;
		z-index:99;
		font-size:12px;
		text-shadow:1px 4px 6px #fff, 0 0 0 #fff, 1px 4px 6px #000;
	}
	.cls_logo_footer{
		position: fixed;
		bottom:25px;
		left:12px;
		z-index:99;
	}
	.cls_logo_footer img{
		width:120px;
	}

	:root {
		--circle-center-center-out: circle(0%);
		--circle-center-center-in: circle(125%);
		--circle-hesitate: circle(40%);
		--circle-top-left-out: circle(0% at top left);
		--circle-top-right-out: circle(0% at top right);
		--circle-bottom-right-out: circle(0% at bottom right);
		--circle-bottom-left-out: circle(0% at bottom left);
		--circle-top-left-in: circle(150% at top left);
		--circle-top-right-in: circle(150% at top right);
		--circle-bottom-right-in: circle(150% at bottom right);
		--circle-bottom-left-in: circle(150% at bottom left);
		--wipe-in: inset(0 0 0 0);
		--wipe-bottom: inset(100% 0 0 0);
		--wipe-left: inset(0 100% 0 0);
		--wipe-top: inset(0 0 100% 0);
		--wipe-right: inset(0 0 0 100%);
		--wipe-top-left-in: polygon(50% -50%,150% 50%,50% 150%,-50% 50%);
		--wipe-top-right-in: polygon(50% -50%,150% 50%,50% 150%,-50% 50%);
		--wipe-bottom-left-in: polygon(50% -50%,150% 50%,50% 150%,-50% 50%);
		--wipe-bottom-right-in: polygon(-50% 0%,200% 0,0 200%,0 -50%);
		--wipe-top-left-out: polygon(0 0,0 0,0 0,0 50%);
		--wipe-top-right-out: polygon(50% -50%,150% 50%,150% 50%,50% -50%);
		--wipe-bottom-left-out: polygon(-50% 50%,50% 150%,50% 150%,-50% 50%);
		--wipe-bottom-right-out: polygon(150% 50%,150% 50%,50% 150%,50% 150%);
		--wipe-cinematic-out: inset(100% 0 100% 0);
		--wipe-cinematic-mid: inset(10% 0 10% 0);
		--square-hesitate: inset(33% 33% 33% 33%);
		--square-out: inset(100% 100% 100% 100%);
		--square-in: var(--wipe-in);
		--square-top-left-out: inset(0 100% 100% 0);
		--square-top-right-out: inset(0 0 100% 100%);
		--square-bottom-left-out: inset(100% 100% 0 0);
		--square-bottom-right-out: inset(100% 0 0 100%);
		--diamond-center-in: polygon(-50% 50%,50% -50%,150% 50%,50% 150%);
		--diamond-center-out: polygon(50% 50%,50% 50%,50% 50%,50% 50%);
		--diamond-hesitate: polygon(45% 50%,50% 25%,55% 50%,50% 75%);
		--opposing-corners-in: polygon(0 0,0 100%,100% 100%,100% 0);
		--opposing-corners-out: polygon(0 0,50% 50%,100% 100%,50% 50%);
	}
	:root {
		--surface: hsl(216 80% 100%);
		--surfaceHSL: 0 0% 100%;
		--text: hsl(208 25% 35%);
		--white: hsl(0 0% 100%);
		--brand: hsl(216 60% 54%);
		--brandHSL: 216 60% 54%;
		--brand-alt: hsl(205 100% 86%);
		--pink: deeppink;
		--high-contrast: hsl(205 100% 10%);
	}

	main.svelte-hztin1>section.svelte-hztin1 {
		grid-area: stack;
		background-color: hsl(var(--brandHSL));
		color: var(--white);
		flex: 2;
		inline-size: 100%;
		max-block-size: 100vh;
		overflow: hidden;
		display: grid;
		place-content: center;
	}
	[transition-style="out:circle:center"] {
		animation-name: circle-out-center;
	}
	[transition-style="in:circle:center"] {
		animation-name: circle-in-center;
	}
	[transition-style] {
		animation-delay: var(--transition__delay,0);
		animation-duration: var(--transition__duration,2.5s);
		animation-timing-function: var(--transition__easing,cubic-bezier(.25,1,.3,1));
		animation-fill-mode: both;
		will-change: clip-path;
	}
	.container:before{
		content: "";
		position: absolute;
		height: 2000px;
		width: 2000px ;
		top: 2% ;
		right: 40% ;
		background-image: linear-gradient(-45deg,#ff5467 0%, #e9041e 100%);
		box-shadow: 0px 8px 50px rgb(0 0 0 / 40%);
		opacity: 1;
		transform: translateY(-45%);
		transition: 1.8s ease-in-out;
		border-radius: 50%;
		z-index: 6;
	}
  @media only screen and (max-width: 600px) {
    .signin-signup {
      width: 100%;
      top: 85%;
      transform: translate(-50%, -100%);
      transition: 1s 0.8s ease-in-out;
    }
    .container:before{
      display: none;
    }
    .e-marker-us,
    .e-marker-sg,
    .b-header__map{
      display: none;
    }
  }
 