/*--------------------------------------*/

/* Fonts
/*--------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/*--------------------------------------*/
/* Bootstrap 5 css
/* Bootstrap 5 icons css
/* Owl Slider css
/* Font Awesome css
/* Effect css
/*--------------------------------------*/

@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
/*--------------------------------------*/

/*Element Base
/*--------------------------------------*/
body,
html,
header,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
ul,
li,
p,
section,
main,
nav{
	margin:0px;
	padding:0px;
	display:block;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}
.navbar-toggler:focus,
button:focus,
.btn-close:focus,
.btn-check:focus+.btn,
.btn:focus,
.accordion-button:focus,
.form-check-input:focus,
.form-control:focus,
.page-link:focus{
	box-shadow: none;
}
body{
	overflow-x: hidden;
}
a{
	text-decoration: none;
}
img{
	max-width: 100%;
	height:auto;
	object-fit: cover;
	vertical-align: middle;
}
.navbar-toggler{
	border: 0;
}
.z-index-9{
	z-index: 9;
}
.cursor-pointer{
	cursor: pointer;
}
.centerdiv{
	display: flex;
	align-items: center;
	justify-content: center;
}
.aligndiv{
	display: flex;
	align-items: center;
}

body{
	/*
    background-color: #c9d6ff;
    background: linear-gradient(to right, #e2e2e2, #c9d6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
	*/
}
/*--------------------------------------*/

/*Typography
/*--------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6{
	font-weight: 500;
}
p {
	margin: 0 0 15px 0;
}
/*--------------------------------------*/

/*Login/Signup Section
/*--------------------------------------*/
.login-signup-section{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: "Jost", sans-serif;
	background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
}
.signup-container{
	max-width: 350px;
	margin: 0px auto;
	height: 500px;
	background: red;
	overflow: hidden;
	background: url("https://doc-08-2c-docs.googleusercontent.com/docs/securesc/68c90smiglihng9534mvqmq1946dmis5/fo0picsp1nhiucmc0l25s29respgpr4j/1631524275000/03522360960922298374/03522360960922298374/1Sx0jhdpEpnNIydS4rnN4kHSJtU1EyWka?e=view&authuser=0&nonce=gcrocepgbb17m&user=03522360960922298374&hash=tfhgbs86ka6divo3llbvp93mg4csvb38") no-repeat center/ cover;
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
}
.signup-container #chk{
	display: none;
}
.signup-container .signup{
	position: relative;
	width:100%;
	height: 100%;
}
.signup-container label{
	color: #fff;
	font-size: 2.3em;
	justify-content: center;
	display: flex;
	margin: 60px;
	font-weight: bold;
	cursor: pointer;
	transition: .5s ease-in-out;
}
.signup-container input{
	font-size: 14px;
	width: 100%;
    height: 55px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	margin: 20px auto;
	padding: 10px 20px;
	border: none;
	outline: none;
	border-radius: 5px;
}
.signup-container button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	color: #fff;
	background: #573b8a;
	font-size: 1em;
	font-weight: bold;
	margin-top: 20px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
}
.signup-container button:hover{
	background: #6d44b8;
}
.signup-container .login{
	height: 460px;
	background: #eee;
	border-radius: 60% / 10%;
	transform: translateY(-180px);
	transition: .8s ease-in-out;
	z-index: 2;
    position: sticky;
}
.signup-container .login label{
	color: #573b8a;
	transform: scale(.6);
}

.signup-container #chk:checked ~ .login{
	transform: translateY(-500px);
}
.signup-container #chk:checked ~ .login label{
	transform: scale(1);	
}
.signup-container #chk:checked ~ .signup label{
	transform: scale(.6);
}
/*--------------------------------------*/

/*Password Section
/*--------------------------------------*/
.password{
  --background: #e0dede;
  --text-color: #414856;
  --border-radius: 8px;
  --width: 100%;
  --height: 55px;
  background: var(--background);
  width: var(--width);
  height: var(--height);
  padding: 0 var(--height) 0 20px;
  position: relative;
  line-height: var(--height);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(65, 72, 86, 0.05);
}
.password .password-checkbox {
  position: absolute;
  width: var(--height);
  height: 100%;
  right: 0;
  top: 0;
  margin: 0;
  z-index: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
}
.password .monkey,
.password .monkey-hands{
  position: absolute;
  width: var(--height);
  height: 100%;
  right: 0;
  top: 0;
  margin: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.password .monkey svg,
.password .monkey-hands svg{
  height: calc(var(--height) - 20px);
  width: calc(var(--height) - 20px);
}
.password .monkey{
  cursor: pointer;
}
.password .monkey::before{
  content: "";
  position: absolute;
  transition: all 0.2s ease;
  width: 3px;
  height: 0px;
  border-radius: 50%;
  top: 36px;
  border-bottom: 3px solid #3C302A;
}
.password .monkey-hands{
  z-index: 2;
  perspective: 80px;
  pointer-events: none;
}
.password .monkey-hands svg{
  transition: transform 0.2s ease-in, opacity 0.1s;
  transform-origin: 50% 100%;
}
.password .password-wrapper{
  overflow: hidden;
  position: relative;
}
.password .password-wrapper .password-input,
.password .password-wrapper .password-text,
.password .password-wrapper .password-dots{
  /*letter-spacing: 2px;*/
  color: var(--text-color);
}
.password .password-wrapper .password-input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  padding: 0;
  background: none;
  color: transparent;
}
.password .password-wrapper .password-input::-moz-selection{
  background: var(--background);
  color: var(--background);
}
.password .password-wrapper .password-input::selection{
  background: var(--background);
  color: var(--background);
}
.password .password-wrapper .password-text,
.password .password-wrapper .password-dots{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  pointer-events: none;
  line-height: var(--height);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.password .password-wrapper .password-text > span,
.password .password-wrapper .password-dots > span {
  transition: all 0.5s ease;
  display: inline-block;
  opacity: var(--opacity, 0);
}
.password .password-wrapper .password-text.cursor::after,
.password .password-wrapper .password-dots.cursor::after{
  content: "";
  width: 1px;
  height: 20px;
  -webkit-text-security: none;
  background: rgba(65, 72, 86, 0.5);
  opacity: var(--opacity, 0);
  display: inline-block;
  -webkit-animation: blink 0.75s linear infinite alternate;
          animation: blink 0.75s linear infinite alternate;
}
.password .password-wrapper .password-dots{
  letter-spacing: 3px;
  -webkit-text-security: disc;
  font-family: "text-security-disc";
}
.password.show .monkey-hands svg {
  transform: perspective(100px) rotateX(-90deg);
  perspective-origin: bottom;
  opacity: var(--opacity, 0);
  transition: transform 0.2s ease, opacity 0.1s 0.1s;
}
.password.show .monkey::before {
  content: "";
  border-radius: 45%;
  width: 9px;
  height: 6px;
  border: 0;
  border-bottom: 2px solid #3C302A;
  top: 30px;
}
.password.show .password-wrapper .password-text > span {
  -webkit-animation: bounce 1s cubic-bezier(0, 1.26, 0.42, 1.26) forwards;
          animation: bounce 1s cubic-bezier(0, 1.26, 0.42, 1.26) forwards;
}
.password.show .password-wrapper .password-text > span:nth-child(1) {
  -webkit-animation-delay: 0.04s;
          animation-delay: 0.04s;
}
.password.show .password-wrapper .password-text > span:nth-child(2) {
  -webkit-animation-delay: 0.08s;
          animation-delay: 0.08s;
}
.password.show .password-wrapper .password-text > span:nth-child(3) {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}
.password.show .password-wrapper .password-text > span:nth-child(4){
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}
.password.show .password-wrapper .password-text > span:nth-child(5){
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.password.show .password-wrapper .password-text > span:nth-child(6){
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.password.show .password-wrapper .password-text > span:nth-child(7){
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
.password.show .password-wrapper .password-text > span:nth-child(8){
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}
.password.show .password-wrapper .password-text > span:nth-child(9){
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}
.password.show .password-wrapper .password-text.cursor > span{
  -webkit-animation: none;
          animation: none;
  opacity: var(--opacity, 1);
}
.password.show .password-wrapper .password-text.cursor > span:last-child{
  -webkit-animation: bounce 1s cubic-bezier(0, 1.26, 0.42, 1.26) forwards alternate;
          animation: bounce 1s cubic-bezier(0, 1.26, 0.42, 1.26) forwards alternate;
  opacity: var(--opacity, 0);
}
.password.show .password-wrapper .password-dots.cursor::after {
  display: none;
}
.password:not(.show) .password-wrapper .password-text.cursor::after {
  display: none;
}
.password:not(.show) .password-wrapper .password-dots > span  {
  -webkit-animation: bounce 1s cubic-bezier(0, 1.26, 0.42, 1.26) forwards alternate;
          animation: bounce 1s cubic-bezier(0, 1.26, 0.42, 1.26) forwards alternate;
}
.password:not(.show) .password-wrapper .password-dots > span:nth-child(1) {
  -webkit-animation-delay: 0.04s;
          animation-delay: 0.04s;
}
.password:not(.show) .password-wrapper .password-dots > span:nth-child(2) {
  -webkit-animation-delay: 0.08s;
          animation-delay: 0.08s;
}
.password:not(.show) .password-wrapper .password-dots > span:nth-child(3) {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}
.password:not(.show) .password-wrapper .password-dots > span:nth-child(4) {
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}
.password:not(.show) .password-wrapper .password-dots > span:nth-child(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.password:not(.show) .password-wrapper .password-dots > span:nth-child(6) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.password:not(.show) .password-wrapper .password-dots > span:nth-child(7) {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
.password:not(.show) .password-wrapper .password-dots > span:nth-child(8) {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}
.password:not(.show) .password-wrapper .password-dots > span:nth-child(9) {
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}
.password:not(.show) .password-wrapper .password-dots.cursor > span {
  -webkit-animation: none;
          animation: none;
  opacity: var(--opacity, 1);
}
.password:not(.show) .password-wrapper .password-dots.cursor > span:last-child {
  -webkit-animation: bounce 1s cubic-bezier(0, 1.26, 0.42, 1.26) forwards alternate;
          animation: bounce 1s cubic-bezier(0, 1.26, 0.42, 1.26) forwards alternate;
  opacity: var(--opacity, 0);
}

@-webkit-keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  30% {
    transform: translateY(0px);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  35% {
    transform: translateY(1px);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  30% {
    transform: translateY(0px);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  35% {
    transform: translateY(1px);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes blink {
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.password.password-generate{
	padding-right: 20px;
}
.password .generate-pass{
	position: absolute;
    right: 34px;
    top: 0;
    font-size: 24px;
    color: #89664c;
}
/*--------------------------------------*/

/* Responsive
/*--------------------------------------*/
/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
	
}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
	
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	
}

@media (max-width: 640px) {
	
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	
}

/* `xs` returns only a ruleset and no media query */
@media (max-width: 480px) {
	
	.signup-container input{
		padding: 10px 8px;
	}
	.password{
		padding: 0 40px 0 8px;
	}
	.password .monkey,
	.password .monkey-hands{
		/*width: 35px;*/
	}
	.password .generate-pass{
		/*right: 18px;*/
	}
}
/*--------------------------------------*/