* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
}

.seller-sign-up-left-side {
	background: #db3022;
	width: 30%;
}

.seller-sign-up-left-side .mind-your-business {
	height: 80vh;
}
.seller-sign-up-left-side .mind-your-business p {
	font-size: 60px;
	font-weight: bold;
}

.seller-sign-up-right-side {
	width: 70%;
}

.seller-sign-up-right-side div button {
	color: #db3022;
}

.tab-2 div .page-two {
	height: 80px;
	width: 80px;
	border-radius: 50%;
	background: #db3022;
	color: #ffffff;
}

.tab-2 div .page-one {
	color: #db3022;
}

.tab-2 div .page-three {
	color: #fdb2ac;
}

.tab-2 div .page-dash-one {
	border: 2px solid #db3022;
}
.tab-2 div .page-dash-two {
	border: 2px solid #9ea09f;
}

.personal-details-form div .input-label {
	color: #adadad;
	transition: all 0.3s ease;
}

.personal-details-form div input {
	outline: none;
	background: #efefef;
	border: 2px solid #0000004d;
	height: 45px;
	transition: all 0.3s ease;
}

.personal-details-form div input:focus {
	border: 2px solid #000000;
}
.personal-details-form .input-div:focus-within .input-label {
	color: #000000;
}

/* The cont */
.cont {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	margin-top: 15px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Reduce worker text size */
.cont span {
	color: #222222cc;
	font-size: 13px;
}

/* Hide the browser's default radio button */
.cont input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	border: 2px solid #db3022;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.cont:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.cont input:checked ~ .checkmark {
	background-color: #ffffff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.cont input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.cont .checkmark:after {
	top: 1.6px;
	left: 1.1px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #db3022;
}

@media screen and (min-width: 768px) and (max-width: 1050px) {
	.seller-sign-up-left-side {
		width: 40%;
	}
}

@media screen and (max-width: 767px) {
	.seller-sign-up-right-side {
		width: 100%;
	}

	.logo-div span {
		color: #db3022 !important;
	}
	.logo-div img {
		border: 2px solid#db3022 !important;
		border-radius: 50%;
	}
}
