body {
	margin: 0;
	padding: 0;
	height: 100%;
	background-color: transparent;
	font-family: Arial, sans-serif;
	/* overflow: hidden;  */
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1001;
}

.logo img {
	height: 250px;
	margin-top: 5px;
	margin-left: 50px;
}

.menu-icon {
	position: absolute;
	top: 50px;
	/* Adjust this value as needed */
	right: 80px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.menu-icon .bar {
	height: 4px;
	width: 100%;
	background-color: white;
	border-radius: 2px;
}

.nav-menu {
	display: flex;
	flex-direction: column;
	position: fixed;
	/* Fixed position to keep it on top */
	right: 0.5%;
	/* Adjust this value to move the menu left from the right edge */
	top: 75px;
	width: 10%;
	height: 22vh;
	background-color: transparent;
	box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	z-index: 1002;
	/* Ensure it's on top of other content */
}

.nav-menu {
	display: none;
	/* Initial state is hidden */
	/* Other styles... */
}

.nav-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu ul li {
	padding: 10px 20px;
	background: none;
	/* Ensure no initial background */
}

.nav-menu ul li a {
	text-decoration: none;
	color: white;
	font-size: 1em;
	text-align: center;
	transition: background 0.3s, color 0.3s;
	/* Smooth transition for hover */
	display: block;
	/* Makes the entire list item area clickable */
}

.nav-menu ul li:hover {
	background-color: #52ad28;
	/* Light gray background on hover */
	display: block;
	/* Changes cursor to pointer */
}

.nav-menu ul li a:hover {
	color: #ffffff;
	/* Text color on hover */
}

.iti {
	width: 100%;
}

.iti__selected-dial-code {
	color: gray;
}

.iti__country-name {
	color: gray;
}

.content {
	position: relative;
	width: 100%;
	height: 100vh;
	background: url("../assets/images/b1.png") no-repeat center center fixed;
	background-size: cover;
	animation: scrollBackground 20s linear infinite;
}

@keyframes scrollBackground {
	0%, 20% {
		background-image: url("../assets/images/b1.png");
	}
	20%, 40% {
		background-image: url("../assets/images/b2.png");
	}
	40%, 60% {
		background-image: url("../assets/images/b3.png");
	}
	60%, 80% {
		background-image: url("../assets/images/b4.png");
	}
	80%, 100% {
		background-image: url("../assets/images/b5.png");
	}
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	/* Black layer with 50% opacity */
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	/* padding-top: 30px; */
	/* Adjust this value to push the form below the header */
}

.centered-text {
	text-align: center;
}

.centered-text h1 {
	font-size: 1.5em;
	margin: 0 0 30px;
}

.centered-text a {
	padding: 10px 60px;
	font-weight: bold;
	font-size: 1.3em;
	background-color: #52ad28;
	color: white;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-decoration: none;
}

.centered-text p {
	margin: 30px 0 0;
	text-align: center;
	color: white;
}

.centered-text p a {
	text-align: center;
	color: white;
}

.centered-text a:hover {
	background-color: #706d73;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
	.menu-icon {
		right: 30px;
		/* Adjust for smaller screens */
	}

	.nav-menu {
		right: 0;
		/* Full-width menu on smaller screens */
		width: 100%;
	}

	.nav-menu ul li {
		padding: 15px 10px;
		/* More padding for better touch targets */
	}

	.centered-text h1 {
		font-size: 2em;
		/* Smaller heading for smaller screens */
	}

	.centered-text a {
		font-size: 0.9em;
		/* Smaller button font size */
		padding: 8px 16px;
		/* Adjust padding for smaller screens */
	}
}

@media (max-width: 480px) {
	.menu-icon {
		width: 25px;
		height: 20px;
	}

	.menu-icon .bar {
		height: 3px;
	}

	.centered-text h1 {
		font-size: 1.5em;
	}

	.centered-text a {
		font-size: 0.8em;
		padding: 6px 12px;
	}
}

.form-container {
	z-index: 1002;
	background: transparent;
	/* White background for the form */
	padding: 15px;
	border-radius: 8px;
	/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
	max-width: 400px;
	width: 100%;

	/* Ensure it's on top of other content */
}

.form-container h2 {
	margin: 0 0 10px;
	font-size: 1.5em;
	color: white;
	text-align: center;
}

.form-group {
	margin-bottom: 10px;
	position: relative;
}

.form-group p {
	color: white;
	font-size: 1em;
	text-align: center;
}

#loginCaptcha, #forgotPasswordCaptcha {
    transform: scale(1);
    transform-origin: 0 0;
    margin-bottom: 10px;    /* spacing below widget */
}

#username,
#password,
#email,
#phoneNumber,
#workspace,
#otp,
#twoFactorCode,
#impersonateUsername,
#impersonateReason,
#forgotUsername,
#workspaceSelect {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	color: black;
	font-size: 0.9em;
}

/* Additional styles for the eye icon */
.toggle-password {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	user-select: none;
}

.fas {
	color: #52ad28;
	font-size: 12px;
}

button {
	background-color: #52ad28;
	color: white;
	border: none;
	padding: 8px;
	width: 100%;
	font-size: 1em;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

button:hover {
	background-color: #706d73;
}

p {
	text-align: center;
	color: white;
}

a {
	color: #52ad28;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
	.menu-icon {
		right: 30px;
		/* Adjust for smaller screens */
	}

	.nav-menu {
		right: 0;
		/* Full-width menu on smaller screens */
		width: 100%;
	}

	.form-container {
		padding: 15px;
	}

	.form-container h2 {
		font-size: 1em;
	}

	.form-group input {
		padding: 8px;
	}

	button {
		font-size: 0.9em;
		padding: 8px;
	}
}

@media (max-width: 480px) {
	.menu-icon {
		width: 25px;
		height: 20px;
	}

	.menu-icon .bar {
		height: 3px;
	}

	.form-container {
		padding: 10px;
	}

	.form-container h2 {
		font-size: 1.2em;
	}

	.form-group input {
		padding: 6px;
	}

	button {
		font-size: 0.8em;
		padding: 6px;
	}
}

.pricing-container {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
	text-align: center;
}

h4 {
	color: #52ad28;
	margin-bottom: 20px;
	margin-top: 65px;
	text-align: center;
	font-size: 2em;
}

.toggle-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.switch {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.switch input {
	display: none;
}

.slider {
	position: relative;
	width: 50px;
	height: 25px;
	background-color: #ccc;
	border-radius: 25px;
	margin: 0 10px;
	transition: background-color 0.2s;
}

.slider:before {
	content: "";
	position: absolute;
	width: 23px;
	height: 23px;
	background-color: white;
	border-radius: 50%;
	top: 1px;
	left: 1px;
	transition: transform 0.2s;
}

input:checked + .slider {
	background-color: #52ad28;
}

input:checked + .slider:before {
	transform: translateX(25px);
}

.label-text {
	font-size: 16px;
	color: #333;
}

.plans {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.plan {
	background-color: white;
	border: 1px solid #ddd;
	border-radius: 10px;
	margin: 10px;
	padding: 20px;
	width: 300px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.plan h5 {
	color: #52ad28;
	font-size: 24px;
}

.plan .price {
	font-size: 22px;
	color: #333;
}

.plan button {
	background-color: #52ad28;
	color: white;
	border: none;
	border-radius: 5px;
	padding: 10px 20px;
	cursor: pointer;
}

.plan ul {
	list-style: none;
	padding: 0;
	text-align: left;
}

.plan ul li {
	margin: 10px 0;
	position: relative;
	padding-left: 25px;
	/* space for the checkmark */
}

.plan ul li:before {
	content: "\f058";
	/* FontAwesome checkmark icon */
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #52ad28;
}

@media (max-width: 768px) {
	.plans {
		flex-direction: column;
		align-items: center;
	}

	.plan {
		width: 90%;
	}
}

/* validation css */

#message {
	display: none;
	background: transparent;
	color: #ffffff;
	position: relative;
	padding: 10px;
	margin-top: 10px;
}

#message p {
	padding: 10px 35px;
	font-size: 18px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
	color: rgb(255, 255, 255);
}

.valid:before {
	position: relative;
	left: -35px;
	content: "\2714";
	/* content: "&#10004;"; */
}

/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
	color: red;
}

.invalid:before {
	position: relative;
	left: -35px;
	content: "\2716";
}

/*
.resendOtpButton{
    color:blue;
} */

#otpMessageArea {
	font-size: 14px;
	margin-top: 10px;
	color: #ff0000;
	/* Red color for error message */
	display: none;
	/* Initially hidden */
}

#resendOtpButton:disabled {
	background-color: #ccc;
	/* Disabled button styling */
	margin-top: 10px;
}

#resendOtpButton:enabled {
	margin-top: 10px;
}

#verifyOtpButton {
	margin-top: 10px;
}

#verifyOtpButton:disabled {
	background-color: #ccc;
	/* Disabled button styling */
}
