<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;display=swap");

body {
	font-family: sans-serif;
	background-color: #1e1e1e;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh; /* Full viewport height */
	margin: 0; /* Remove default margin */
}

.frame {
	border: none;
	outline: none;
	position: relative;
	z-index: 1;
	border-radius: 5px;
	background: linear-gradient(to right, orange, #f83292);
	cursor: pointer;
	padding: 50px 100px;
	overflow: hidden;
}

.frame::before {
	content: "";
	position: absolute;
	left: 4px;
	right: 4px;
	top: 4px;
	bottom: 4px;
	border-radius: 4px;
	background-color: black;
	z-index: -1;
	transition: 200ms;
	overflow: hidden;
}

.container {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	width: 800px;
	overflow: hidden;
}

h2 {
	margin-bottom: 20px;
	text-align: center;
}

.progress-bar {
	height: 5px;
	background-color: #e0e0e0;
	margin-bottom: 10px;
	border-radius: 3px;
	overflow: hidden;
}

.progress-bar .progress {
	height: 100%;
	background: linear-gradient(to right, orange, fuchsia);
	width: 50%;
}
.progress2 {
	height: 100%;
	background: linear-gradient(to right, orange, fuchsia);
	width: 100%;
}

.form-row {
	display: flex;
	gap: 20px;
}

.form-group {
	flex: 1;
	margin-bottom: 20px; /* Increased margin for better visual spacing after label floats up */
	position: relative;
}

label {
	display: block;
	margin-bottom: 5px;
	color: #555;
	font-size: 1rem !important;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="date"],
select,
textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
}

.phone-input {
	display: flex;
	align-items: center;
	gap: 10px; /* Space between select and input */
}

.phone-input select {
	width: 100px; /* Or any width that suits your design */
}
.phone-input input[type="text"] {
	width: calc(100% - 110px); /* Adjust width to account for select */
}

.steps {
	text-align: right;
	margin-bottom: 10px;
	color: #777;
}

.form-row:last-of-type {
	/* Style the last form row differently */
	flex-direction: column; /* Stack elements vertically */
	align-items: stretch; /* Stretch description textarea */
	gap: 0px;
}
textarea {
	height: 110px; /* Increased height */
	resize: vertical;
}

button {
	padding: 10px 30px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	margin-top: 10px;
}

.cancel {
	border: none;
	outline: none;
	position: relative;
	z-index: 1;
	border-radius: 5px;
	background: linear-gradient(to right, orange, #f83292);
	cursor: pointer;
}

.container-button {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
}

.cancel::before {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	top: 2px;
	bottom: 2px;
	border-radius: 4px;
	background-color: white;
	z-index: -1;
	transition: 200ms;
}

.cancel::after {
	content: attr(data);
	background: black;
	-webkit-background-clip: text;
	color: transparent;
	transition: 200ms;
}

.cancel:hover::before {
	transform: scale(1); /* Shrink to align with the button */
}

.continue {
	background-image: linear-gradient(to right, orange, #f83292);
	color: white;
}

.buttons {
	display: flex;
	justify-content: center;
	margin-top: 10px;
	gap: 20px;
}

.form-column {
	display: flex;
	flex-direction: column; /* Stack inputs and labels vertically */
}

.margin-div {
	height: 10px;
}

/* form 2 */

/* New styling to separate left and right sections */
.form-row.connect-section {
	display: flex;
	justify-content: space-between;
	align-items: flex-start; /* Align top for both sections */
	gap: 20px;
	margin-top: 20px; /* Optional: Adjust spacing between this and previous section */
}

.form-column2 {
	display: flex;
	flex-direction: column; /* Stack inputs and labels vertically */
	flex: 1; /* Ensure both columns are equal width */
}

/* Adjustments for the right column, ensuring it aligns with the other right-side fields */
.form-column.right-side {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px; /* Ensure the inputs are spaced out */
}

#serviceType2 {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
}

/* Optional: Add margin for the left and right side spacing */
.form-column2 label {
	margin-bottom: 5px; /* Ensure labels are well-spaced from inputs */
}

/* asterik in placeholder */

.input-placeholder {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	pointer-events: none; /* Ignore pointer events for the placeholder */
	font-size: 16px;
	color: gray; /* Default placeholder text color */
	transition: top 0.2s ease-in-out, transform 0.2s ease-in-out, font-size 0.2s ease-in-out, color 0.2s ease-in-out; /* Smooth transition */
}

.input-placeholder .asterisk {
	color: red;
}

.custom-input:focus + .input-placeholder,
.form-group.has-value .input-placeholder {
	top: -10px; /* Move placeholder above the input */
	transform: translateY(0); /* Reset vertical transform */
	font-size: 12px; /* Smaller font size for label */
	color: #333; /* Darker color for label when focused/filled */
    background-color: white; /* To cover the input border if it overlaps */
    padding: 0 5px; /* Add some padding to the label to separate from border */
    left: 5px; /* Adjust left position slightly when floating */
}

.custom-input {
	width: 100%;
	padding: 10px; /* Slightly increased padding for visual balance */
	font-size: 16px;
	box-sizing: border-box;
	border: 1px solid #ccc; /* Added a border for better visibility */
    border-radius: 4px; /* Optional: Rounded corners for input */
	margin-bottom: 1%;
}
</pre></body></html>