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;
	height: 100vh;
	justify-content: center;
	align-items: center;
}

.login-container {
	background: white;
	padding: 60px 30px;
	border-radius: 16px;
	max-width: 320px;
	width: 100%;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.07);
	text-align: center;
	animation: loginStart 2s 0.5s forwards;
	opacity: 0;
	margin: 10px;
}

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

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

.login-icon {
	position: relative;
	animation: bringInLoginIcon 1s 0.2s forwards;
	opacity: 0;
	width: 60px;
	margin: 0 auto;
	margin-bottom: 30px;
}

@keyframes bringInLoginIcon {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes bringInLoginIcon {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

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

.login-icon .login-icon-cont {
	position: relative;
	overflow: visible;
}

.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 loginStart {
	0% {
		opacity: 0;
		transform: translateY(-5px);
	}
	50% {
		transform: translateY(0);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

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;
}

.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: 0 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,
#submitSignUpBtnText {
	display: block;
}

#loginLoader,
#resetLoader,
#resetPassLoader,
#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;
}

.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;
}
