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

}

.required-fields{
    color: #f15d9b;
}

.form-container {
	display: flex;
	background: #FBFAFD;
	padding: 100px;
	border-radius: 60px;
	/*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    width: 100%;
    justify-content: center;
    max-width: 1360px;
    margin: 65px auto;
}

.form-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 20px;
	width: 45%;
}

.form-header h1 {
	color: #37246a;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 56px;
}

.form-header h1 small {
	color: #f15d9b;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: 56px;
	/* 155.556% */
}

.form-header p {
	color: var(--Grey-600, #8b8b8b);
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px;
	/* 160% */
}

.form-body {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.form-body .left,
.form-body .right {
	flex: 1;
	min-width: 200px;
}

.form-body input,
.form-body select,
.form-body .select2-container--default {
	width: calc(100% - 20px);
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	box-sizing: border-box;
	font-size: 14px;
	color: #333;
}


.form-body .select2-container--default {
    padding: 5px 10px;
    background-color: #FFF;
}

.form-body .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px;
}

.form-body .select2-container--default .select2-selection--single {
    background-color: transparent;
    border: 0;
    border-radius: 0;
}

.form-body input::placeholder,
.form-body select::placeholder {
	color: #cccccc;
}

.checkbox-container {
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
}

.confidentiality input {
	margin-right: 10px;
	float: left;
	margin-top: 5px;
}

.confidentiality label {
	font-size: 14px;
	color: #a6a6a6;
}

.confidentiality label a {
	color: #ff6699;
	text-decoration: underline;
}

.form-footer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#investorForm {
	width: 100%;
}

.form-footer button {
    height: 44px;
    width: 100%;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background-color: #e0e1dd;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: not-allowed;
    margin-top: 20px;
}

.form-footer button.active {
	background-color: #862996;
	cursor: pointer;
}


@media (max-width: 746px) {
	.form-container {
		flex-direction: column;
		padding: 35px;
	}

	.form-header {
		width: 100%;
	}

	#investorForm {
		width: 100%;
	}

	.form-body {
		width: 100%;
		flex-direction: column;
	}

	.form-header h1 {
		font-size: 28px;
		/* Decrease font size for smaller screens */
		line-height: 42px;
		/* Adjust line height accordingly */
	}

	.form-header h1 small {
		font-size: 28px;
		/* Decrease font size for smaller screens */
		line-height: 42px;
		/* Adjust line height accordingly */
	}

	.form-header p {
		font-size: 16px;
		/* Decrease font size for smaller screens */
		line-height: 24px;
		/* Adjust line height accordingly */
	}

	.form-footer button {
		width: calc(100% - 20px);
	}
}

label {
	color: #3b3b3b;
	text-transform: capitalize;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	/* 171.429% */
}

.overlay {
	position: fixed;
	background-color: rgba(134, 41, 150, 0.7294117647);
	height: 100vh;
	width: 100%;
	right: 0;
	top: 0;
	z-index: 2;
}

.overlay article {
	position: absolute;
	border-radius: 48px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #FCFDFE;
	width: 600px;
	height: 377px;
	padding: 60px;
}

@media (max-width: 990px) {
    .overlay article {
        width: 90%;
        height: auto;
    }
}

.overlay article .closePop {
	display: block;
	height: 36px;
	width: 36px;
	background-image: url("../assets/closeIcon.png");
	background-size: 36px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	right: 32px;
	top: 32px;
	position: absolute;
}

.overlay article .successTick {
	display: block;
	width: 100px;
	height: 100px;
	margin: 0 auto 10px auto;
}

.overlay article p {
	font-size: 17px;
	font-weight: 400;
	line-height: 23px;
	color: #828282;
	text-align: center;
}



.overlay.blue {
    background-color: rgba(34,32,107,.37);
}

.overlay.blue a {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #22206B;
}

.overlay.blue a span {
    color: #862996;
    font-weight: 400;
    display: inline-block;
    padding-right: 21px;
    background-image: url("../assets/linkIcon.png");
    background-size: 16px;
    background-position: right center;
    background-repeat: no-repeat;
}
