.contact-form {
    position: relative;
    /* background-image: linear-gradient(0deg, #69EACB 0%, #8c7dff);

		background-image: linear-gradient(to bottom, #0fe8be, #852bf9); */

		background-image: linear-gradient(to bottom, black, #852bf9);
	
    color: white;
    border-radius: 0px 0px 100px 100px;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.308);
    /* background-attachment: fixed; */
}
.contact-form::before {
    content: '';
    /* background-color: black; */
    position: absolute;
    top: 0px;
    bottom: 20px;
    right: 0;
    left: 0;
	z-index: -1;
    border-radius: 0px 0px 100px 100px;
}
.contact-form-1
{
display:flex;
	padding:60px 30px;

		
}

.contact-form-1 h3
{
	font-size: 100px;
	font-family: "Onest";
	color:white;
}
.contact-form-left
{
	position: sticky;
	top:10vh;
}
.contact-form-right
{
	display:flex;
	flex-flow:column;
	font-size: 24px;
}
.field-wrapper
{
	display:flex;
	flex-wrap: wrap;
}
.input-wrapper
{
	display:flex;
	width:100%;
	
}
.input-wrapper label, .input-wrapper label input , textarea, .contact-form-1 p, .input-wrapper select
{
	width:100%;
}


.contact-form label input
{
	position: relative;
	background-color:transparent;
	border: none;
	/* border-bottom: 2px solid white; */
	outline: none;
	color:white;

}
.contact-form label input:focus
{
	/* background-color: rgba(128, 128, 128, 0.375); */
	outline: none !important;
}

.wpcf7-form-control-wrap {
	position: relative;
	z-index: 4;
	font-size: 24px;
	line-height: 30px;
  }
  
  .wpcf7-form-control-wrap:has(input[type="text"])::after,
  .wpcf7-form-control-wrap:has(input[type="email"])::after,
  .wpcf7-form-control-wrap:has(input[type="tel"])::after
  /* .wpcf7-form-control-wrap:has(textarea)::after */
  {
	position: absolute;
	content: '';
	height: 2px;
	left: 0;
	right: 0;
	bottom: -2px;
	background:var(--white);
	transition: background-color 0.3s, height 0.3s; /* Smooth transition for effect */
	z-index: -1;
  }
  
  .wpcf7-form-control-wrap:has(input[type="text"]:focus)::after,
  .wpcf7-form-control-wrap:has(input[type="email"]:focus)::after,
  .wpcf7-form-control-wrap:has(input[type="tel"]:focus)::after,  .wpcf7-form-control-wrap:has(input[type="text"]:valid )::after,  .wpcf7-form-control-wrap:has(input[type="email"]:valid)::after,  .wpcf7-form-control-wrap:has(input[type="tel"]:valid)::after
  /* .wpcf7-form-control-wrap:has(textarea:focus)::after{ */
  {

	/* background-image: linear-gradient( var(--orange), red); */
	 /* Expand height on focus */
	
  }

  .wpcf7-form-control-wrap:has(input[type="text"]:invalid )::after,
  .wpcf7-form-control-wrap:has(input[type="email"]:invalid)::after, 
   .wpcf7-form-control-wrap:has(input[type="tel"]:invalid)::after
  {
	background-image: linear-gradient( var(--orange), red);
	height: 10%;
	z-index: -1;
  }



  .wpcf7-response-output
  {
	width:100%;
	text-align: center;
	position: relative;
	border: none;
	
  }
	 .checkbox-form
	{
		height:20px;
		width:20px !important;
		background-color: #09ee9a;
		border-radius: 50%;
	}

	.wpcf7-not-valid-tip
	{
		font-size: 16px;
		font-weight: 100;
	}

/* Wrapper styles */
.services-wrapper {
    margin: 15px 0;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.input-wrapper p
{
    position: relative;
	display: flex;

    align-items: center;

}
/* Hide original checkbox but keep it accessible */
.custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom checkbox style */
.checkbox-form {
    position: relative;
	left:0;
    display: inline-block;
    min-width: 24px;
    height: 24px;
    background: #fff;
   
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
	z-index: 4;
	
}

/* .checkbox-form::before

{
	content: '';
    position: absolute;
	left:-4px;
	right:-4px;
	top:-4px;
	bottom:-4px;
	background-image: linear-gradient(45deg, red, yellow);
	filter:blur(2px);
	z-index:3;
	opacity: 0;
} */
.custom-checkbox:checked + .checkbox-form:before {
	opacity: 1;
	scale: 1.2;
}

/* Hover effect */
.checkbox-form:hover {
    border-color: #999;
}

/* Checkmark style */

.checkbox-form:after 
{
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    width: 7px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
	z-index: 7;
	scale:0;
	transition: all 0.2s cubic-bezier(.31,1.16,.71,.74);
	
}
.custom-checkbox:checked + .checkbox-form:after {
opacity: 1;
	scale:1;
	
}

.custom-checkbox:checked ~ .check-label
{
	text-decoration: line-through;
	/* text-decoration-color: red; */
}

/* Label text style */
.check-label {
    margin-left: 12px;
    font-size: 20px;
    cursor: pointer;
}

/* Focus state for accessibility */
.custom-checkbox:focus + .checkbox-form {
   
}

.contact-form-right input[type="submit"]{
    background: none;
    border: none;
    border-bottom: 4px solid white;
    color: white;
 
	font-size: 35px;
}

@media only screen and (max-width:800px)
{
.contact-form-1 h3 {
    font-size: 60px;
    text-align: center;
	margin-bottom: 20px;
}
.contact-form-left {
    position: relative;
	top:0px;
}
.contact-form {

border-radius: 0 0 50px 50px;
}
#site-footer {
padding: 5px;
}
}