@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 2px;
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  color: #333;
  font-family: "Open Sans", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: appear 0.9s linear forwards;
}
@keyframes appear {
  0%, 70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
* .frame .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #5CA4EA;
  display: flex;
  justify-content: center;
  align-items: center;
}
* .frame .center .btn {
  width: 10rem;
  height: 3.3rem;
  position: relative;
  cursor: pointer;
}
* .frame .center .btn .btn-outline {
  width: 100%;
  height: 100%;
  stroke-width: 1;
  fill: none;
}
* .frame .center .btn .btn-outline .outline {
  fill: #5CA4EA;
  stroke: rgba(255, 255, 255, 0.4);
  transition: fill 0.8s ease;
}
* .frame .center .btn .btn-outline .highlight {
  stroke: rgba(255, 255, 255, 0.8);
  stroke-dasharray: 25 265;
  stroke-dashoffset: 25;
  transition: stroke-dashoffset 0.8s ease;
}
* .frame .center .btn .btn-text {
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}
* .frame .center .btn:hover .outline {
  fill: #3890e5;
  transition: fill 0.8s ease;
}
* .frame .center .btn:hover .highlight {
  stroke-dashoffset: -265;
  transition: stroke-dashoffset 0.8s ease;
}

/*# sourceMappingURL=index.css.map */
