.contact-wrapper * {
	border:0px solid red;
	text-transform: none;
}

.bigwrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:60px;
	flex-direction: row;
	width:80%;
}

.contact-wrapper{
	padding:60px 0px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;


}



.contact-text-container{
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	width:100%;
	max-width: 600px;
	gap:30px;


}

.contact-title{
	text-align: center;

}

.contact-tagline{
	max-width:700px;
	text-align: center;

}

.chick{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap:10px;
}


.mail-container{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

.mail-img{
	width:25px;
	margin-right:10px;
}




/*FORM*/

.form-container{
	width:50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:40px 0;
	min-width:600px;
}

.logocontact{
	width:50px;
	margin-bottom:15px;
}


    .contact-form {
      padding: 2.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      width: 75%;
      display: flex;
      flex-direction: column;
      gap:15px;
      max-width:700px;
    }

    .twoitems{
    	display: flex;
    	justify-content: center;
    	flex-direction: row;
    }

    .inputwrapper{
    	width:100%;
    	display: flex;
    	flex-direction: column;
    	justify-content: flex-start;

    }

    #fullName{
    	width:90%;
    }

    .inputwrapper-two{
    	width:50%;
    	display: flex;
    	flex-direction: column;
    	justify-content: flex-start;
    }


    .contact-form label {
    	font-size: 0.9rem;
    	margin-bottom:5px;
    	text-align: left;
    	color: #f3f3f3;



    }

    .contact-form input {
    	background: #f3f3f3;
    	color: #222;
    	width:100%;
    	border-radius: 10px;
    	height:30px;
    	text-align: left;
    	padding-left:15px;
    }

    .contact-form textarea {

    }

    .contact-form textarea {
      min-height: 120px;
      resize: vertical;
      font-size: 0.9rem;
      line-height: 20px;
      border-radius: 10px;
      padding:14px;
    }

    .contact-form input::placeholder {
  color: #111;       /* change this to whatever color you prefer */
  opacity:0.6;
  font-size:0.9rem;
}


    .sendformwrapper{
    	display: flex;
    	justify-content: center;
    	align-items: center;
    }

    .sendForm{
    	margin-top:30px;
    	min-width:300px;
    	transition: background 0.3s;
    	background: rgba(255,255,255, 0.8) !important;

    }

    .sendForm:hover{
    	background: rgba(255,255,255, 1) !important;
    	border: none;

    }


.glass2{
	background: rgba(255,255,255, 0.2);  /* translucent white */
  backdrop-filter: blur(35px) saturate(130%); /* key: glass blur */
  -webkit-backdrop-filter: blur(35px) saturate(130%); /* key: glass blur */
}


@media (max-width:1050px){
	.bigwrapper{
		flex-direction: column;
		gap:30px;
	}

	.form-container{
		width:100%;
	}
}