/* Fuente */
@import url('https://fonts.googleapis.com/css?family=Oxygen&display=swap');

/* imports */
@import url("./reset.css");
@import url("./nav.css");
@import url("./aside.css");

:root {
  --main-color: #011627;
  --secundary-color: #d9dbd9;
  --tertiary-color: #83c4bd;
}

body {font-family: 'Oxygen', sans-serif;}

section {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../imagenes/home-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--secundary-color);
}

form {
  position: relative;
  width: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
form h2 {
  padding-bottom: 15px;
  text-align: center;
  font-size: 2.5em;
}
input, textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-bottom: 2px solid 	rgba(217,219,217,0.3);/*secund-color*/
  background-color: transparent;
  color: var(--secundary-color);
}
textarea {
  border: 2px solid 	rgba(217,219,217,0.3);/*secund-color*/
  border-radius: 10px;
  resize: none;
}
input:hover {
  border-bottom: 2px solid 	rgba(217,219,217,0.7);/*secund-color*/
}
textarea:hover {
  border: 2px solid 	rgba(217,219,217,0.7);/*secund-color*/
}