.layoutBox {
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: linear-gradient(
		rgba(0, 0, 0, 0.45), 
		rgba(0, 0, 0, 0.45)
    ), 
	url("https://image.freepik.com/free-photo/businesspeople-celebrating-success_1098-1996.jpg");
	color: white;
	font-size: 25px;
}

#curform input[type="text"], #curform input[type="date"], #curform select, #curform textarea {
	width: 100%;
	box-sizing: border-box;
	border: 0;
	background-color: #93B2CE;
	padding: 8px 8px 8px 8px;
}

#curform textarea {
	display: block;
	width: 90%;
	margin: auto;
}

#curform textarea {
	margin-top: 12px;
}

#curform select {
	width: 40%;
}

#curform input[type="submit"] {
	padding: 12px 12px 12px 12px;
	background-color: #39B0FF;
	border: 0;
	font-size: 18px;
}

.formContain {
	display: flex;
	flex-flow: wrap;
	justify-content: space-around;

	margin: auto;
}

.salary {
	display: flex;
	justify-content: space-around;
}

.salary input[type="text"] {
	margin-right: 10px;
}

#curform .right, #curform .left {
	width: 40%;
	padding-right: 30px;
	padding-left: 30px;
}

#archivo {
	margin: auto;
}
/* ************************************************************** */
.notes {
	display: flex;
	flex-flow: wrap;
	justify-content: space-around;
	padding-bottom: 30px;
}

.note {
	margin-top: 10px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	width: 20%;
	color: rgba(0, 0, 0, 0.6);

	padding: 16px 12px 16px 12px;
}

.note:hover {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.noteTitle {
	padding-left: 10px;
	padding-right: 10px;
	font-size: 30px;
}

.noteContent {
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 15px;
	font-size: 14px;
}

.note img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* ************************************************************** */

@media only screen and (max-width: 650px) {
	
	#curform input[type="text"] {
		width: 100%;
	}

	#curform textarea {
		width: 100%;
	}
  
	#curform select {
		width: 90%;
	}

	#curform .right, #curform .left {
		width: 100%;
		padding: 0;
	}

	
}

@media only screen and (max-width: 950px) {
	.note {
		width: 100%;
	}
}