@charset "UTF-8"; /* CSS Document */

*{
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body{
	font-family: 'Outfit', Helvetica, Arial, "sans-serif";
	background-color:#ffdad5;
	
	/*.... added by rS: */
	background: linear-gradient(45deg, #777777, #ffffff);
  background-repeat: no-repeat;
  min-height: 100vh;
  margin: 0;
	
}

/* 100vh; means that the height of an element should be 100% of the viewport height*/
.contact-container{
	height:100vh;
	display:flex;
	align-items:center;
	justify-content:space-evenly;	
}
.contact-left{
	display:flex;
	flex-direction: column;
	align-items: start;
	gap:20px;
}

/* font weaight? 
https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-weight
*/

.contact-left-title h2{
	font-weight: 600;
	color:#a363aa;
	font-size:40px;
	margin-bottom:5px;
}
.contact-left-title hr{
	border:none;
	width:300px;
	height:5px;
	background-color:#a363aa;
	
}
.contact-left textarea{
	height:140px;
	padding-top:15px;
	border-radius:20px;
}
.contact-inputs{
	width:400px;
	height:50px;
	border:none;
	outline:none;
	padding-left:25px;
	font-weight:500;
	color:#777;
	border-radius: 50px;
}
.contact-inputs:focus{
	border: 2px solid #ff994f;
}

.contact-inputs::placeholder{
	/* placeholder var. */
	color:#a9a9a9;
}

.contact-left button{
	display:flex;
	align-items:center;
	padding:15px 30px;
	font-size:16px;
	color:#fff;
	gap:10px;
	border:none;
	border-radius: 50px;
	background:linear-gradient(270deg, #df3cd7, #a363aa);
		cursor:pointer;
}
.contact-left button img{
	height:15px;
}
.contact-right img{
	width:100%;
}

@media (max-width:800px){
	.contact-inputs{
		width:80vw;
	}
	.contact-right{
		display:none;
	}
}


