@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

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

body {
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/postnoticias/elrecurso/bg_dos.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 10px 15px;
}

.container {
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0px 4px 10px -3px #666666;
	background: #fff;


	h2 {
		text-align: center;
		background: rgb(0,191,252);
		background: linear-gradient(16deg, rgba(0,191,252,1) 0%, rgba(0,91,255,1) 100%);
		font-weight: bolder;
		font-size: 35px;
		padding: 0px  15px 20px 10px;

		-webkit-text-fill-color: transparent;
		-webkit-background-clip: text;
	}

	form {
		label {
			font-size: 18px;
			font-weight: 500;
		}

		input {
			width: 100%;
			padding: 7px;
			outline: none;
		}

		textarea {
			width: 100%;
			height: 130px;
			padding: 7px;
			resize: none;
			outline: none;
		}

		button {
			background: rgb(0,85,252);
			background: linear-gradient(6deg, rgba(0,85,252,1) 0%, rgba(0,145,255,1) 100%);
			border: none;
			color: #fff;
			font-weight: bolder;
			padding: 8px 15px;
			border-radius: 8px;
			width: 100%;
			transition: all .3s;


			&:hover {
				transform: scale(1.05);
				box-shadow: 0px 4px 10px -3px #373737;
			}
		}


		.file {
			margin-top: 10px;
			margin-bottom: 20px;


			label {
				background: rgb(0,85,252);
				background: linear-gradient(6deg, rgba(0,85,252,1) 0%, rgba(0,145,255,1) 100%);
				border: none;
				font-size: 14px;
				color: #fff;
				font-weight: bolder;
				padding: 5px 10px;
				border-radius: 8px;
				width: 100%;
				transition: all .3s;
			}

			.values {
				margin-top: 10px;
				margin-bottom: 10px;
				display: flex;
				justify-content: start;
				align-items: center;
				gap: 20px;
			}
		}
	}
}


/*---------------------------------MEDIAS QUERY-----------------------------------------*/

@media screen and (max-width: 300px) {

	.container {
		padding: 15px;
	}

}

@media screen and (max-width: 270px) {

	.container h2 {
		font-size: 25px;
	}

}