body{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Jost', sans-serif;
	background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
	/*background: rgb(47,79,79) ;*/
}
.main{
	width: 350px;
	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;
}
#chk{
	display: none;
}
.signup{
	position: relative;
	width:100%;
	height: 100%;
}
label{
	color: #fff;
	font-size: 2.3em;
	justify-content: center;
	display: flex;
	margin: 60px;
	font-weight: bold;
	cursor: pointer;
	transition: .5s ease-in-out;
}
input{
	width: 60%;
	height: 20px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	margin: 20px auto;
	padding: 10px;
	border: none;
	outline: none;
	border-radius: 5px;
}
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;
}
button:hover{
	background: #6d44b8;
}
.login{
	height: 460px;
	background: #eee;
	border-radius: 60% / 10%;
	transform: translateY(-180px);
	transition: .8s ease-in-out;
}
.login label{
	color: #573b8a;
	transform: scale(.6);
}

#chk:checked ~ .login{
	transform: translateY(-500px);
}
#chk:checked ~ .login label{
	transform: scale(1);	
}
#chk:checked ~ .signup label{
	transform: scale(.6);
}

/* MODAL */
.modal {
	--bs-modal-zindex: 1055;
	--bs-modal-width: 500px;
	--bs-modal-padding: 0.9375rem;
	--bs-modal-margin: 10px;
	--bs-modal-color: ;
	--bs-modal-bg: #ffffff;
	--bs-modal-border-color: #f3f3f3;
	--bs-modal-border-width: 1px;
	--bs-modal-border-radius: var(--bs-border-radius-lg);
	--bs-modal-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	--bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
	--bs-modal-header-padding-x: 26px;
	--bs-modal-header-padding-y: 25px;
	--bs-modal-header-padding: 1rem 1rem;
	--bs-modal-header-border-color: #f3f3f3;
	--bs-modal-header-border-width: 1px;
	--bs-modal-title-line-height: 1.5;
	--bs-modal-footer-gap: 0.5rem;
	--bs-modal-footer-bg: ;
	--bs-modal-footer-border-color: #f3f3f3;
	--bs-modal-footer-border-width: 1px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--bs-modal-zindex);
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
  }
  
  .modal-dialog {
	position: relative;
	width: auto;
	margin: var(--bs-modal-margin);
	pointer-events: none;
  }
  .modal.fade .modal-dialog {
	transition: transform 0.4s ease;
	transform: translate(0, -50px);
  }
  @media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
	  transition: none;
	}
  }
  .modal.show .modal-dialog {
	transform: none;
  }
  .modal.modal-static .modal-dialog {
	transform: scale(1.02);
  }
  
  .modal-dialog-scrollable {
	height: calc(100% - var(--bs-modal-margin) * 2);
  }
  .modal-dialog-scrollable .modal-content {
	max-height: 100%;
	overflow: hidden;
  }
  .modal-dialog-scrollable .modal-body {
	overflow-y: auto;
  }
  
  .modal-dialog-centered {
	display: flex;
	align-items: center;
	min-height: calc(100% - var(--bs-modal-margin) * 2);
  }
  
  .modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	color: var(--bs-modal-color);
	pointer-events: auto;
	background-color: var(--bs-modal-bg);
	background-clip: padding-box;
	border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
	border-radius: var(--bs-modal-border-radius);
	outline: 0;
  }
  
  .modal-backdrop {
	--bs-backdrop-zindex: 1050;
	--bs-backdrop-bg: #000000;
	--bs-backdrop-opacity: 0.5;
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--bs-backdrop-zindex);
	width: 100vw;
	height: 100vh;
	background-color: var(--bs-backdrop-bg);
  }
  .modal-backdrop.fade {
	opacity: 0;
  }
  .modal-backdrop.show {
	opacity: var(--bs-backdrop-opacity);
  }
  
  .modal-header {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	padding: var(--bs-modal-header-padding);
	border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
	border-top-left-radius: var(--bs-modal-inner-border-radius);
	border-top-right-radius: var(--bs-modal-inner-border-radius);
  }
  .modal-header .btn-close {
	padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
	margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
  }
  
  .modal-title {
	margin-bottom: 0;
	line-height: var(--bs-modal-title-line-height);
  }
  
  .modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: var(--bs-modal-padding);
  }
  
  .modal-footer {
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
	background-color: var(--bs-modal-footer-bg);
	border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
	border-bottom-right-radius: var(--bs-modal-inner-border-radius);
	border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  }
  .modal-footer > * {
	margin: calc(var(--bs-modal-footer-gap) * 0.5);
  }
  
  @media (min-width: 576px) {
	.modal {
	  --bs-modal-margin: 30px;
	  --bs-modal-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}
	.modal-dialog {
	  max-width: var(--bs-modal-width);
	  margin-right: auto;
	  margin-left: auto;
	}
	.modal-sm {
	  --bs-modal-width: 300px;
	}
  }
  @media (min-width: 992px) {
	.modal-lg,
	.modal-xl {
	  --bs-modal-width: 90%;
	}
  }
  @media (min-width: 1200px) {
	.modal-xl {
	  --bs-modal-width: 1140px;
	}
  }
  .modal-fullscreen {
	width: 100vw;
	max-width: none;
	height: 100%;
	margin: 0;
  }
  .modal-fullscreen .modal-content {
	height: 100%;
	border: 0;
	border-radius: 0;
  }
  .modal-fullscreen .modal-header,
  .modal-fullscreen .modal-footer {
	border-radius: 0;
  }
  .modal-fullscreen .modal-body {
	overflow-y: auto;
  }
  
  @media (max-width: 575.98px) {
	.modal-fullscreen-sm-down {
	  width: 100vw;
	  max-width: none;
	  height: 100%;
	  margin: 0;
	}
	.modal-fullscreen-sm-down .modal-content {
	  height: 100%;
	  border: 0;
	  border-radius: 0;
	}
	.modal-fullscreen-sm-down .modal-header,
	.modal-fullscreen-sm-down .modal-footer {
	  border-radius: 0;
	}
	.modal-fullscreen-sm-down .modal-body {
	  overflow-y: auto;
	}
  }
  @media (max-width: 767.98px) {
	.modal-fullscreen-md-down {
	  width: 100vw;
	  max-width: none;
	  height: 100%;
	  margin: 0;
	}
	.modal-fullscreen-md-down .modal-content {
	  height: 100%;
	  border: 0;
	  border-radius: 0;
	}
	.modal-fullscreen-md-down .modal-header,
	.modal-fullscreen-md-down .modal-footer {
	  border-radius: 0;
	}
	.modal-fullscreen-md-down .modal-body {
	  overflow-y: auto;
	}
  }
  @media (max-width: 991.98px) {
	.modal-fullscreen-lg-down {
	  width: 100vw;
	  max-width: none;
	  height: 100%;
	  margin: 0;
	}
	.modal-fullscreen-lg-down .modal-content {
	  height: 100%;
	  border: 0;
	  border-radius: 0;
	}
	.modal-fullscreen-lg-down .modal-header,
	.modal-fullscreen-lg-down .modal-footer {
	  border-radius: 0;
	}
	.modal-fullscreen-lg-down .modal-body {
	  overflow-y: auto;
	}
  }
  @media (max-width: 1199.98px) {
	.modal-fullscreen-xl-down {
	  width: 100vw;
	  max-width: none;
	  height: 100%;
	  margin: 0;
	}
	.modal-fullscreen-xl-down .modal-content {
	  height: 100%;
	  border: 0;
	  border-radius: 0;
	}
	.modal-fullscreen-xl-down .modal-header,
	.modal-fullscreen-xl-down .modal-footer {
	  border-radius: 0;
	}
	.modal-fullscreen-xl-down .modal-body {
	  overflow-y: auto;
	}
  }
  @media (max-width: 1399.98px) {
	.modal-fullscreen-xxl-down {
	  width: 100vw;
	  max-width: none;
	  height: 100%;
	  margin: 0;
	}
	.modal-fullscreen-xxl-down .modal-content {
	  height: 100%;
	  border: 0;
	  border-radius: 0;
	}
	.modal-fullscreen-xxl-down .modal-header,
	.modal-fullscreen-xxl-down .modal-footer {
	  border-radius: 0;
	}
	.modal-fullscreen-xxl-down .modal-body {
	  overflow-y: auto;
	}
  }
  /* Modal styles */
  .modal {
	display: none; /* Hidden by default */
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
	animation: fadeIn 0.5s;
}

.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 300px;
	text-align: center;
	animation: slideDown 0.5s;
}

.close-button {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	top: 2px;
	right: 10px;
}

.close-button:hover,
.close-button:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.tick {
	color: #0f0;
	font-size: 30px;
	animation: fadeIn 0.5s;
}

.cross {
	color: red;
	font-size: 30px;
	animation: fadeIn 0.5s;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideDown {
	from { transform: translateY(-50%); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

/*===== Preloader Style =====*/

#preloader-active {
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
    margin: 0 auto;
}

.preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader .preloader-inner {
    position: relative;
}

.preloader .preloader-circle {
    width: 120px;
    height: 120px;
    position: relative;
    border-style: solid;
    border-width: 1px;
    border-top-color: purple;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    z-index: 10;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    background-color: #fff;
    -webkit-animation: zoom 2000ms infinite ease;
    animation: zoom 2000ms infinite ease;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.preloader .preloader-circle2 {
    border-top-color: #0078ff;
}

.preloader .preloader-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
    text-align: center;
    display: inline-block;
    padding-top: 6px;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.preloader .preloader-img img {
    max-width: 80px;
}

.preloader .pere-text strong {
    font-weight: 800;
    color: #dca73a;
    text-transform: uppercase;
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
