@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

.container {
	width: 100%;
	height: 100vh;
	background: linear-gradient(45deg, #010758, #490d61);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
}

.container h1 {
	font-size: 45px;
	font-weight: 500;
	margin-top: -50px;
	margin-bottom: 50px;
}

.container h1 span {
	color: #ff2963;
}

.container textarea {
	width: 600px;
	height: 250px;
	background: #403d84;
	color: #fff;
	font-size: 15px;
	border: 0;
	outline: 0;
	padding: 20px;
	border-radius: 10px;
	resize: none;
	margin-bottom: 30px;
}

.container textarea::placeholder {
	font-size: 16px;
	color: #ddd;
}

.container .row {
	width: 600px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.container button {
	background: #ff2963;
	color: #fff;
	font-size: 16px;
	padding: 10px 30px;
	border-radius: 35px;
	border: 0;
	outline: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.container button ion-icon {
	font-size: 20px;
	margin-right: 3px;
}

.container select {
	flex: 1;
	color: #fff;
	background: #403d84;
	height: 50px;
	padding: 0 20px;
	outline: 0;
	border: 0;
	border-radius: 35px;
	appearance: none;
	background-image: url(./img.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position-x: calc(100% - 20px);
	background-position-y: 15px;
}

@media (max-width:767px) {
	.container textarea {
		width: 80%;
	}
	.container .row {
		width: 80%;
	}
	.container button {
		padding: 5px 10px;
		font-size: 10px;
		height: 50px;
	}
	.container button ion-icon {
		font-size: 15px;
	}
}

