@import url("https://fonts.googleapis.com/css2?family=Karla&family=Poppins:wght@400;600&display=swap");

:root {
	--bg: #eef2f7;
	--violet: #42079e;
	--white: #ffffff;
	--dark: #555555;
	--karla: "Karla", sans-serif;
	--poppins: "Poppins", sans-serif;
}

/* width */
::-webkit-scrollbar {
	width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
	background: var(--bg);
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--violet);
}

.btn-cancel,
.btn-ok {
	cursor: pointer;
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	padding: 5px 10px;
	border: none;
	font-family: var(--poppins);
	border-radius: 5px;
	background-color: #fefefe;
	margin-top: 20px;
}

.btn-ok {
	background-color: #ff9036;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: var(--bg);
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 50px;
}

.message {
	text-align: center;
	margin: 40px 0;
	width: 300px;
	height: auto;
	padding: 10px;
	border-radius: 10px;
	border: none;
	background-color: red;
	color: var(--bg);
	font-weight: 200;
	box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048),
		0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072),
		0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
	font-family: var(--poppins);
}

.msg {
	display: none;
	position: fixed;
	top: 50%; /* Position the top edge of the element in the middle of the screen */
	left: 50%; /* Position the left edge of the element in the middle of the screen */
	width: 300px;
	height: auto;
	padding: 30px;
	border-radius: 10px;
	border: none;
	background-color: var(--violet);
	color: var(--bg);
	font-weight: 600;
	box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048),
		0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072),
		0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
	font-family: var(--poppins);
	transition: 0.7s;
	transform: translate(
		-50%,
		-50%
	); /* Adjust the element's position relative to its top-left corner */
}

.a {
	color: var(--violet);
	font-family: var(--poppins);
	text-decoration: none;
	font-weight: 600;
}

.wrapper {
	display: flex;
	height: auto;
	min-height: 600px;
	width: 70vw;
	border-radius: 2rem;
	box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048),
		0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072),
		0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
	background: var(--white);
}

.wrapper__container-left {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
	padding: 50px;
	background-color: var(--violet);
	border-radius: 2rem 0rem 0rem 2rem;
}

.wrapper__container-heading {
	font-family: var(--poppins);
	color: var(--white);
	font-size: 16px;
	font-weight: normal;
}

.notice {
	font-size: 14px;
	font-family: var(--poppins);
	color: var(--dark);
	margin-bottom: 20px;
	text-align: center;
}

.wrapper__container-menu {
	list-style: none;
	font-family: var(--poppins);
	color: var(--white);
	font-size: 14px;
}

.wrapper__container-menu-item {
	margin-bottom: 20px;
	cursor: pointer;
}

.wrapper__container-menu-item > a {
	color: #e1e1e1;
	text-decoration: none;
}

.wrapper__container-menu-item:last-of-type {
	margin-bottom: 0;
}

.wrapper__container-footer {
	font-family: var(--poppins);
	font-size: 12px;
	line-height: 21px;
	color: var(--white);
}

.wrapper__container-right {
	padding: 50px;
	display: flex;
	flex-direction: column;
	flex: 2;
	align-items: center;
	justify-content: space-between;
}

.wrapper__container-subheading {
	font-family: var(--poppins);
	font-weight: normal;
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--violet);
}

.form {
	width: 400px;
}

.verify-form,
.verify-heading {
	display: none;
}

.label {
	display: block;
	font-family: var(--poppins);
	font-style: normal;
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: var(--violet);
	margin-bottom: 10px;
}

.form-control-input {
	text-transform: capitalize;
	width: 100%;
	height: 48px;
	background: var(--white);
	border: 1px solid var(--violet);
	box-sizing: border-box;
	border-radius: 10px;
	outline: none;
	padding: 8px;
	color: var(--violet);
	font-size: 14px;
	font-family: var(--poppins);
	margin-bottom: 15px;
}

.mr {
	margin-right: 10px;
}

.mr:last-child {
	margin-right: 0;
}

input[type="email"] {
	text-transform: lowercase;
}

.input-otp {
	display: flex;
	justify-content: space-evenly;
}
.otp-input {
	height: 45px;
	width: 45px;
	font-size: 25px;
	text-align: center;
	border: 1.5px solid var(--violet);
	margin-bottom: 20px;
}
.otp-input::-webkit-inner-spin-button,
.otp-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.inline {
	display: flex;
	justify-content: space-between;
}

.button {
	outline: none;
	cursor: pointer;
	width: 100%;
	height: 48px;
	border: none;
	background: var(--violet);
	border-radius: 10px;
	color: var(--white);
	font-size: 14px;
	font-family: var(--poppins);
	margin-bottom: 20px;
}

.login {
	font-family: var(--poppins);
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 16px;
	display: flex;
	align-items: center;
	text-align: center;
	color: var(--violet);
}

/* media query for tablets */
@media only screen and (max-width: 1000px) {
	body {
		flex-direction: column;
		justify-content: flex-start;
		padding: 0;
	}
	.wrapper {
		width: 100%;
		height: auto;
		box-shadow: none;
		flex-direction: column;
		border-radius: 0;
	}
	.wrapper__container-left {
		border-radius: 0;
	}

	.wrapper__container-menu {
		display: flex;
		flex-wrap: wrap;
		margin-top: 10px;
	}
	.wrapper__container-menu-item {
		font-size: 16px;
		margin: 10px 0;
		margin-right: 20px;
	}
	.wrapper__container-footer {
		display: none;
	}
}

/* media query for mobile devices */
@media only screen and (max-width: 600px) {
	body {
		flex-direction: column;
		justify-content: flex-start;
		padding: 0;
	}
	.msg {
		background-color: var(--white);
		color: var(--violet);
	}
	.wrapper {
		width: 100%;
		height: auto;
		box-shadow: none;
		flex-direction: column;
		border-radius: 0;
	}
	.wrapper__container-heading {
		font-size: 22px;
		margin-bottom: 30px;
	}
	.wrapper__container-left {
		border-radius: 0;
	}
	.form {
		width: 100%;
	}
	.wrapper__container-menu {
		display: flex;
		flex-wrap: wrap;
	}
	.wrapper__container-menu-item {
		font-size: 16px;
		margin: 10px 0;
		margin-right: 20px;
	}
	.inline {
		flex-direction: column;
	}
	.wrapper__container-footer {
		display: none;
	}
}
