.info-box {
	background-color: #e8f3ff;
	padding: 1rem 1.5rem;
	border-left: 4px solid #1e6fff;
	margin: 1rem;
	border-radius: 4px;
}

.info-box p {
	color: #1e6fff;
	font-size: 0.875rem;
	margin: 0;
}



.form-section {
	padding: 0 1.5rem 1.5rem;
}

.section-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.radio-group {
	margin-bottom: 1.5rem;
}

.radio-option {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
	cursor: pointer;
}

.radio-input {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid #d9d9d9;
	margin-right: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.radio-input.checked {
	border-color: #1e6fff;
}

.radio-input.checked::after {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #1e6fff;
}

.radio-label {
	color: #333;
	font-size: 0.875rem;
}

.assign-dropdown {
	margin: 1rem 0 1.5rem 2.25rem;
	display: none;
}

.assign-dropdown.show {
	display: block;
}

.dropdown-wrapper {
	position: relative;
	width: 200px;
}

.dropdown-btn {
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: white;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-size: 0.875rem;
}

.dropdown-btn:hover {
	border-color: #1e6fff;
}

.dropdown-content {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: white;
	border: 1px solid #d9d9d9;
	border-top: none;
	border-radius: 0 0 4px 4px;
	max-height: 200px;
	overflow-y: auto;
	display: none;
	z-index: 10;
}

.dropdown-content.show {
	display: block;
}

.dropdown-item {
	padding: 0.5rem 1rem;
	cursor: pointer;
	font-size: 0.875rem;
}

.dropdown-item:hover {
	background-color: #f5f5f5;
}

.dropdown-item.selected {
	background-color: #e8f3ff;
	color: #1e6fff;
}

.more-options {
	background-color: #f9f0ff;
	padding: 1.5rem;
	border-radius: 4px;
	margin-bottom: 1.5rem;
}

.tag-input {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	padding: 0.5rem;
	background-color: white;
	margin-bottom: 1rem;
}

.tag {
	background-color: #e8f3ff;
	color: #1e6fff;
	padding: 0.25rem 0.75rem;
	border-radius: 12px;
	font-size: 0.75rem;
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
}

.tag-remove {
	margin-left: 0.5rem;
	cursor: pointer;
}

.input-field {
	border: none;
	outline: none;
	flex: 1;
	min-width: 100px;
	font-size: 0.875rem;
}

.contact-type {
	margin-top: 1rem;
}

.checkbox-option {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	cursor: pointer;
}

.checkbox-input {
	width: 18px;
	height: 18px;
	border: 2px solid #d9d9d9;
	border-radius: 4px;
	margin-right: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.checkbox-input.checked {
	border-color: #1e6fff;
	background-color: #1e6fff;
}

.checkbox-input.checked::after {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: white;
	font-size: 0.75rem;
}

.checkbox-label {
	color: #333;
	font-size: 0.875rem;
}

.footer {
	width: 100%;
	padding: 1rem 1.5rem;
	background-color: #f5f5f5;
	border-top: 1px solid #e6e6e6;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	bottom: 0;
}

.remember-option {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.remember-checkbox {
	width: 16px;
	height: 16px;
	border: 2px solid #d9d9d9;
	border-radius: 4px;
	margin-right: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.remember-checkbox.checked {
	border-color: #1e6fff;
	background-color: #1e6fff;
}

.remember-checkbox.checked::after {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: white;
	font-size: 0.625rem;
}

.remember-label {
	color: #666;
	font-size: 0.875rem;
}

.submit-btn {
	background-color: #1e6fff;
	color: white;
	border: none;
	padding: 0.5rem 1.5rem;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
}

.submit-btn:hover {
	background-color: #185abc;
}

.submit-btn:disabled {
	background-color: #d9d9d9;
	cursor: not-allowed;
}