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

/*CONTACT FORM*/
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
button[type=submit] {
  background-color:#00AEEF;
  color: white;
	padding: 20px 40px;
	border-radius: 4px;
  cursor: pointer;
	font-weight: 600;
	font-size: 1em;
	border: 2 px;
	border-color: #00AEEF;
}

/* When moving the mouse over the submit button, add a darker green color */
button[type=submit]:hover {
  background-color: #EC008C;
	font-weight: 600;
	font-size: 1em;
	border-color: #EC008C;
	border: 2 px;
}

/* Style the submit button with a specific background color etc */
button[type=reset] {
	background-color: #fff;
	border-color: #00AEEF;
	border: 2 px;
	color: #00AEEF;
  padding: 20px 20px;
  border-radius: 4px;
  cursor: pointer;
	font-weight: 600;
	font-size: 1em;
}

/* When moving the mouse over the submit button, add a darker green color */
button[type=reset]:hover {
	background-color: #fff;
	border: 2 px;
	border-color: #EC008C; 
	color: #EC008C;
	font-weight: 600;
	font-size: 1em;
}

/* Add a background color and some padding around the form */
.container-form {
  border-radius: 5px;
  background-color: #fff;
  padding: 20px;
}

.label-text {
	color: #EC008C;
	font-weight: 600;
}

/*VALIDATION*/

.form-message {
	color: red;
	text-align: center;
}

.form-error {
	color: red;
}

.form-success {
	color: green;
}

.input-error{
	box-shadow: 0 0 5px red;
}