/** Fonts */
/** Sizes */
/** Margins */
/** Colors */
/** Shadows */
/** Animations */
/** Settings */
* {
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

body {
  margin: 0;
}

/** Links */
a.link, a:not(:hover) {
  text-decoration: none;
}

/** Images */
img {
  vertical-align: middle;
}

/** Forms */
input,
textarea,
.input-style {
  background: rgba(255, 255, 255, 0.4);
  padding: 14px 12px;
  border-radius: 6px;
  border: 2px solid transparent;
  outline: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  color: #525978;
}
input::-moz-placeholder, textarea::-moz-placeholder, .input-style::-moz-placeholder {
  color: #52597890;
}
input::placeholder,
textarea::placeholder,
.input-style::placeholder {
  color: #52597890;
}
input:focus,
textarea:focus,
.input-style:focus {
  border-color: #84668B;
}

.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}/*# sourceMappingURL=reset.css.map */