body {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	background-color: #f9f9f9;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	color: #454545;
}

body.signup-wrapper {
	background-color: #fff;
	padding: 20px 20px 80px 20px;
}

.wrapper {
	display: flex;
	min-height: 100vh;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}

/* Width constraint for auth pages that wrap .login-container in an extra div. */
.auth-page {
	width: 100%;
	max-width: 440px;
}

.login-container {
	background: white;
	padding: 60px 30px;
	border-radius: 16px;
	max-width: 440px;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.07);
	text-align: center;
	margin: 10px;
	position: relative;
}

body.intro-active .login-container {
	opacity: 0;
	animation: containerEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s forwards;
}

@media (min-width: 500px) {
	.login-container {
		padding: 60px;
	}
}

.processing-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.login-icon {
	position: relative;
	width: 60px;
	margin: 0 auto;
	margin-bottom: 30px;
	perspective: 600px;
}

.login-icon .droplet_pulse {
	position: absolute;
	opacity: 0;
	transform-origin: 50% 50%;
	animation: LoginIcon__droplet_pulse 3s linear 0.9s infinite;
}

.login-icon .login-icon-cont {
	position: relative;
	overflow: visible;
	transform-origin: 50% 100%;
}

body.intro-active .login-icon .login-icon-cont {
	animation:
		dropFall 0.4s cubic-bezier(0.55, 0.06, 0.85, 0.3) 0.05s forwards,
		dropImpact 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.login-icon .login-icon-cont .wrench {
	transform-origin: 50% 50%;
}

.login-icon .login-icon-cont .droplet {
	transform-origin: 50% 50%;
}

@keyframes LoginIcon__droplet_pulse {
	0% {
		opacity: 0;
		transform: scale3d(1, 1, 1);
	}
	50% {
		opacity: 0.3;
	}
	100% {
		opacity: 0;
		transform: scale3d(1.6, 1.6, 1);
	}
}

@keyframes containerEnter {
	0% {
		opacity: 0;
		transform: translateY(16px) scale(0.96);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes dropFall {
	0% {
		opacity: 0;
		transform: translate3d(0, -55vh, 0) scaleX(0.55) scaleY(1.6) rotateZ(-2deg);
	}
	20% {
		opacity: 0.85;
	}
	100% {
		opacity: 0.92;
		transform: translate3d(0, 0, 0) scaleX(0.78) scaleY(1.34) rotateZ(0deg);
	}
}

@keyframes dropImpact {
	0% {
		opacity: 0.92;
		transform: translate3d(0, 0, 0) scaleX(0.78) scaleY(1.34);
	}
	16% {
		opacity: 0.55;
		transform: translate3d(0, 6px, 0) scaleX(1.5) scaleY(0.4);
	}
	38% {
		opacity: 0.82;
		transform: translate3d(0, -4px, 0) scaleX(0.88) scaleY(1.18);
	}
	58% {
		opacity: 0.93;
		transform: translate3d(0, 1px, 0) scaleX(1.06) scaleY(0.94);
	}
	80% {
		opacity: 0.98;
		transform: translate3d(0, 0, 0) scaleX(0.98) scaleY(1.02);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

.login-icon-cont .droplet-shine {
	transform: translateX(-220px);
	animation: dropletShine 6s ease-in-out 0.8s infinite;
}

@keyframes dropletShine {
	0% {
		transform: translateX(-220px);
	}
	14% {
		transform: translateX(440px);
	}
	100% {
		transform: translateX(440px);
	}
}

@property --snake-angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}

.login-container::before {
	content: "";
	position: absolute;
	inset: -3px;
	border-radius: 19px;
	padding: 3px;
	background: conic-gradient(
		from var(--snake-angle),
		transparent 0deg,
		transparent 260deg,
		rgba(235, 86, 53, 0.35) 305deg,
		rgba(255, 175, 130, 0.95) 345deg,
		rgba(255, 230, 210, 1) 358deg,
		transparent 360deg
	);
	-webkit-mask:
		linear-gradient(#000, #000) content-box,
		linear-gradient(#000, #000);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#000, #000) content-box,
		linear-gradient(#000, #000);
	mask-composite: exclude;
	pointer-events: none;
	filter: blur(1.5px);
	opacity: 0;
	animation:
		snakeAngle 6s linear 1.4s infinite,
		snakePulse 6s ease-in-out 1.4s infinite;
}

@keyframes snakeAngle {
	0% {
		--snake-angle: 0deg;
	}
	40% {
		--snake-angle: 360deg;
	}
	100% {
		--snake-angle: 360deg;
	}
}

@keyframes snakePulse {
	0% {
		opacity: 0;
	}
	4% {
		opacity: 1;
	}
	23% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

body.intro-active #emailStep input,
body.intro-active #emailStep .continue-email-btn,
body.intro-active #loginSection #bottomLink {
	opacity: 0;
	transform: translateY(10px);
	animation: formItemIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.intro-active #emailStep input {
	animation-delay: 0.55s;
}
body.intro-active #emailStep .continue-email-btn {
	animation-delay: 0.65s;
}
body.intro-active #loginSection #bottomLink {
	animation-delay: 0.78s;
}

@keyframes formItemIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.login-container,
	.login-container::before,
	.login-icon .login-icon-cont,
	.login-icon .droplet_pulse,
	.login-icon-cont .droplet-shine,
	#emailStep input,
	#emailStep .continue-email-btn,
	#loginSection #bottomLink {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
	.login-container::before {
		opacity: 0 !important;
	}
}

form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
	height: 40px;
	width: 100%;
	padding: 5px 28px;
	font-size: 14px !important;
	margin: 0 auto;
	display: block;
	background-color: #fff !important;
	border-radius: 30px;
	color: #454545 !important;
	line-height: 40px;
	border: 1px solid #c5c5c5;
	transition:
		border-color,
		opacity 0.5s;
	box-sizing: border-box;
	box-shadow: -3px 4px 16px 0px rgba(0, 0, 0, 0.05);
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
	border-color: #44b5ff;
	font-size: 14px !important;
	outline: none;
}

input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="text"]::placeholder {
	color: #b5b5b5;
	font-size: 14px !important;
}

input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="text"]:disabled {
	opacity: 0.5;
}

input[type="email"]:-webkit-autofill,
input[type="email"]:-webkit-autofill:hover,
input[type="email"]:-webkit-autofill:focus,
input[type="email"]:-webkit-autofill:active,
input[type="password"]:-webkit-autofill,
input[type="password"]:-webkit-autofill:hover,
input[type="password"]:-webkit-autofill:focus,
input[type="password"]:-webkit-autofill:active,
input[type="text"]:-webkit-autofill,
input[type="text"]:-webkit-autofill:hover,
input[type="text"]:-webkit-autofill:focus,
input[type="text"]:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px #fff inset !important;
	-webkit-text-fill-color: #454545 !important;
	font-size: 14px !important;
}

label {
	display: block;
	text-align: left;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #454545;
}

.maint-mode {
	color: grey;
	font-size: 14px;
	text-align: center;
}

#maintMode {
	display: none;
}
body.maint #loginForm,
body.maint #bottomLink {
	display: none;
}
body.maint #maintMode {
	display: block;
}

.email-cont {
	position: relative;
}

.email-loader {
	position: absolute;
	top: 10px;
	right: 8px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin: 0 auto;
	font-size: 10px;
	text-indent: -9999em;
	border-top: 3px solid rgb(235, 86, 53, 0.4);
	border-right: 3px solid rgb(235, 86, 53, 0.4);
	border-bottom: 3px solid rgb(235, 86, 53, 0.4);
	border-left: 3px solid #eb5635;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: spiraling 1.1s infinite linear;
	animation: spiraling 1.1s infinite linear;
	z-index: 2;
}

button[type="submit"],
.continue-email-btn {
	position: relative;
	font-size: 16px;
	padding: 0;
	border: 0;
	border-radius: 7px;
	cursor: pointer;
	background-color: #eb5635;
	color: #f9f9f9;
	font-style: italic;
	font-weight: 700;
	margin: 12px 0;
	transition:
		background-color,
		opacity 0.3s ease;
	-webkit-appearance: none;
	max-width: 280px;
	width: 100%;
	margin: 12px auto;
	height: 50px;
	white-space: nowrap;
	overflow: hidden;
}

button[type="submit"]:disabled,
.continue-email-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

button[type="submit"]:hover,
.continue-email-btn:hover {
	background-color: #d44a2b;
}

.back-btn {
	padding: 12px 12px;
	border: 1px solid #c5c5c5;
	border-radius: 7px;
	cursor: pointer;
	background-color: #f9f9f9;
	color: #454545;
	transition: background-color 0.3s ease;
	-webkit-appearance: none;
	max-width: 280px;
	width: 100%;
	margin: 0 auto;
	height: 50px;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.back-btn .back-btn-text-cont {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.back-btn .back-btn-text-cont .back-btn-text {
	font-size: 14px;
	font-weight: 700;
}

.back-btn .back-btn-text-cont .active-email {
	font-size: 12px;
	color: grey;
}

.back-btn:hover {
	background-color: #e9e9e9;
}

.hidden {
	display: none !important;
}

.bottom-link {
	text-align: center;
	margin-top: 15px;
}

.bottom-link button {
	color: #eb5635;
	text-decoration: none;
	font-size: 12px;
	padding: 0;
	border: 0;
	cursor: pointer;
	background-color: transparent;
	margin: 0;
	-webkit-appearance: none;
}

.login-loader,
.reset-loader,
.resetpass-loader,
.signup-loader {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin: 0 auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 3px solid rgba(255, 255, 255, 0.4);
	border-right: 3px solid rgba(255, 255, 255, 0.4);
	border-bottom: 3px solid rgba(255, 255, 255, 0.4);
	border-left: 3px solid #fff;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: spiraling 1.1s infinite linear;
	animation: spiraling 1.1s infinite linear;
	z-index: 2;
}

.login-btn-text,
.reset-btn-text,
.resetpass-btn-text,
.signup-btn-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#loginBtnText,
#resetBtnText,
#resetPassBtnText,
#verifyBtnText,
#submitSignUpBtnText {
	display: block;
}

#loginLoader,
#resetLoader,
#resetPassLoader,
#verifyLoader,
#submitSignUpLoader {
	display: none;
}

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

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

.forgot-password-text {
	font-size: 14px;
	margin-bottom: 20px;
	justify-content: center;
}

.forgot-password-success-message {
	color: #00b300;
	font-size: 16px;
}

.checkbox-wrapper-31 {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
}

.checkbox-wrapper-31 .background {
	fill: #ccc;
	transition: ease all 0.6s;
	-webkit-transition: ease all 0.6s;
}

.checkbox-wrapper-31 .stroke {
	fill: none;
	stroke: #fff;
	stroke-miterlimit: 10;
	stroke-width: 2px;
	stroke-dashoffset: 100;
	stroke-dasharray: 100;
	transition: ease all 0.6s;
	-webkit-transition: ease all 0.6s;
}

.checkbox-wrapper-31 .check {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2px;
	stroke-dashoffset: 22;
	stroke-dasharray: 22;
	transition: ease all 0.6s;
	-webkit-transition: ease all 0.6s;
}

.checkbox-wrapper-31 input[type="checkbox"] {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	margin: 0;
	opacity: 0;
	-appearance: none;
	-webkit-appearance: none;
}

.checkbox-wrapper-31 input[type="checkbox"]:hover {
	cursor: pointer;
}

.checkbox-wrapper-31 input[type="checkbox"].checked + svg .background {
	fill: #eb5635;
}

.checkbox-wrapper-31 input[type="checkbox"].checked + svg .stroke {
	stroke-dashoffset: 0;
}

.checkbox-wrapper-31 input[type="checkbox"].checked + svg .check {
	stroke-dashoffset: 0;
}

.signup-title {
	color: #454545;
	padding: 40px 0 60px 0;
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}

.signup-logo {
	padding: 0 0 25px 0;
	text-align: center;
}

.signup-logo svg {
	margin: 0 auto;
	width: 100px;
}

.signup-tagline {
	color: #454545;
	font-size: 14px;
	padding: 40px 20px 40px 20px;
	margin: 0 auto;
	text-align: center;
	max-width: 800px;
}

.signup-tagline span {
	font-weight: 700;
}

.verify-summary {
	color: #454545;
	font-size: 14px;
	padding: 0 0 30px 0;
	margin: 0 auto;
	text-align: center;
	line-height: 1.5;
}

.verify-summary span {
	font-weight: 700;
}

.agreement {
	display: flex;
	align-items: center;
	justify-content: center;
}

.agreement_cont {
	overflow: hidden;
	display: inline-block;
	border-radius: 10px;
	box-shadow: -18px 18px 16px 0px rgba(0, 0, 0, 0.07);
	border: 1px solid #bdbdbd;
}

.agreement_inner_cont {
	color: #454545;
	background-color: #ededed;
	padding: 20px;
	max-height: 400px;
	overflow-y: auto;
	max-width: 800px;
	border-radius: 10px;
}

.agreement_cont ul {
	padding: 0;
	margin: 0;
}

.agreement_cont ul li {
	list-style: none;
	margin-bottom: 20px;
}

.agreement_cont ul li .pointtitle {
	font-size: 14px;
	text-align: left;
	margin-bottom: 10px;
}

.agreement_cont ul li .pointinfo {
	font-size: 12px;
	text-align: justify;
}

.trial_accept_cont {
	max-width: 800px;
	margin: 40px auto;
	text-align: center;
}

.trial_accept_cont .acceptmessage {
	font-size: 14px;
}

.trial_accept_cont .acceptmessage span {
	font-weight: 700;
}

.accept_checkbox_cont {
	margin-top: 10px;
}

.signup-form {
	max-width: 280px;
	margin: 0 auto;
}

.signup-form .field-cont input.invalid {
	border-color: red;
}

.continue-link-cont {
	text-align: center;
}

#passwordFields {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.password-requirements {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
	font-size: 12px;
}

.password-requirements li {
	color: #c5c5c5;
	padding: 4px 0;
	transition: color 0.3s ease;
}

.password-requirements li.met {
	color: #08cb39;
}

.password-requirements li.unmet {
	color: #e04a2e;
}
