body {
	height: 100vh;
	background-color: #02070d;
}

.form{
	display: flex;
	flex-wrap: wrap;
}

h2{
	text-align: center;
	margin-bottom: 10px;
}


.box {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	margin: 30px 0;
}

.contact-form {
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(15px);
	padding: 50px 25px;
	-webkit-box-shadow: 0 25px 23px rgba(0, 0, 0, 0.15);
	box-shadow: 0 25px 23px rgba(0, 0, 0, 0.15);
	border: 1.5px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;

}

.shape1 {
	height: 150px;
	width: 150px;
	position: absolute;
	background: -o-linear-gradient(315deg, #f0bf1e, #f0bb14);
	background: linear-gradient(135deg, #f0bf1e, #f0bb14);
	border-radius: 50%;
	bottom: 100px;
	right: -130px;
	z-index: -1;
}
.shape2 {
	height: 150px;
	width: 150px;
	position: absolute;
	background: -o-linear-gradient(315deg, #3c53b0,#5365ae);
	background: linear-gradient(135deg, #3c53b0,#5365ae);
	border-radius: 50%;
	top: 100px;
	left: -50px;
	z-index: -1;
}

input[type=text],select,textarea {
  width: 50%;
  padding: 8px;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 8px;
	margin-bottom: 16px;
  resize: vertical;
  }

	.contact-form {
			background: rgba(255, 255, 255, 0.2); /* Adjust the opacity to your liking */
			border-radius: 10px;
			padding: 20px;
			box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		}

		.form-group {
				margin-bottom: 20px;
		}

		.form-group label {
				display: block;
				margin-bottom: 5px;
				font-weight: bold;
				color: #1f242d;
		}

		.form-group input, .form-group textarea {
				width: 100%;
				padding: 10px;
				border: none;
				border-radius: 5px;
				background: rgba(255, 255, 255, 0.1); /* Adjust the opacity to your liking */
				color: #1f242d;
		}

		.form-group textarea {
				resize: vertical;
		}

		.form-group input[type="submit"] {
				background: rgb(0, 128, 255); /* Change to your preferred button color */
				color: #1f242d;
				cursor: pointer;
		}

		.form-group input[type="submit"]:hover {
				background: rgb(39, 147, 255); /* Change to your preferred button hover color */
		}
