@import url('https://fonts.googleapis.com/css?family=Open+Sans:300i&display=swap');

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

body {
  background: #DEDEDE;
  display: flex;
  min-height: 100vh;
}

form {
  margin: auto;
  width: 50%;
  max-width: 500px;
  background: #F3F3F3;
  padding: 30px;
  border: 1px solid rgba(0,0,0,0.2);
 border-radius: 8px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0585c3;
  /*color: rgba(0,0,0,0.5);*/
}

input {
  display: block;
  padding: 10px;
  width: 100%;
  margin: 30px 0;
  font-size: 18px;
}

input[type="submit"] {
  background: #0585c3;
  border: 0;
  color: #fff;
  opacity: 0.8;
  cursor: pointer;
  border-radius: 7px;
  margin-bottom: 0;
}

input[type="submit"]:hover {
  opacity: 1;
}

input[type="submit"]:active {
  transform: scale(0.95);
}

input[type="reset"] {
  background: crimson;
  border: 0;
  color: #fff;
  opacity: 1;
  cursor: pointer;
  border-radius: 7px;
  margin-bottom: 0;
}

input[type="reset"]:hover {
  opacity: 0.8;
}

input[type="reset"]:active {
  transform: scale(0.95);
}

@media (max-width:768px) {
  form {
    width: 75%;
  }
}

@media (max-width:480px) {
  form {
    width: 95%;
  }
}

.centro a {
 display: flex;
 justify-content: center;
 color: #0585c3;
}

p.form-link2 {
  color: #e60000;
}

.ingresa {
 color: #0066ff;
}
