@import url("https://file.myfontastic.com/TZF7CQSAxV9YQkj5ou5JnW/icons.css");/*  FUENTE ICONOS  */
@import url("https://fonts.googleapis.com/css?family=Oswald:400,300,700");/*fuentes para */


* {
    
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}

body {
  font-family: 'Oswald', sans-serif;
  background-image: url(../images/fondo-kenfire.jpg);
  /*background: #f6f7f8;*/
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  object-fit: cover;
  font-size: 12pt;
  color: #FFFFFF;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.contenedor {
  width: 85%;
  max-width: 400px;
  margin: auto;
  background: rgba(255,255,255,.4);
  text-align: center;
  padding: 1em;
  box-sizing: border-box;
  border-radius: 15px;
  border: 2px dotted gray;
}
.contenedor .logo {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.contenedor .logo img {
  width: 100%;
}
input::placeholder {
  color: #3f3e3e;
}
input, textarea {
  font-family: 'Oswald', sans-serif;
  font-size: 12pt;
  width: 100%;
  height: 35px;
  margin: 10px 0;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #b2b2b2;
}
textarea {
  height: 60px;
}
input[type="submit"],
.boton {
  background: red;
  color: #FFFFFF;
  cursor: pointer;
  border: none;
  transition:0.5s all;
}
input[type="submit"]:hover,
.boton:hover {
  background: rgb(63, 63, 63);
  border: none;
}

input:hover, textarea:hover {
  border: 1px solid #d18383;
}

#error, #ok {
	width: 100%;
	font-size: 1.3em;
	line-height: 160%;
	text-align: center;
	padding: 3em;
}


#error {
	color: #484848;
  border: 1px dashed #F00;

}

#ok {
	color: #484848;
	border: 1px solid #484848;
}
