html,
body {
  position: relative;
  background-color: #fefefe;
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-x: hidden;
  font-family: Regular, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.header {
  background-color: #0f2f7f;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 0;
  margin-bottom: 50px;
  text-align: center;
}

.footer {
  width: 100vw;
  height: 60px;
  position: relative;
  bottom: 0;
  background-image: url('../img/waves.svg');
  background-repeat: repeat-x;
  background-color: transparent;
  margin: auto auto 40px;
}

* {
  box-sizing: border-box;
}

.container {
  flex: 1;
}

.panel-body {
  padding: 0;
}

.panel-body .media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.media-body,
.media-left,
.media-right {
  display: block;
  width: auto;
}

.text-info {
  color: #0f2f7f;
}

h2 {
  color: #0f2f7f;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1.5em;
}

h4 {
  color: #222;
  font-size: 21px;
  line-height: 1.5em;
}

body>.container {
  margin-bottom: 40px;
}

.panel-primary {
  max-width: 600px;
  margin: 0 auto;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;

}

.panel-primary,
.panel-primary>.panel-heading {
  border: 0;
  background-color: #fff;
  border-radius: 0;
}

.panel-body {
  padding: 0;
}

.panel-body .media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.media-body,
.media-left,
.media-right {
  display: block;
  width: auto;
}

.media-body {
  color: #808080;
}

.media-icon {
  font-size: 55px !important;
  margin-bottom: 30px;
}


.gly-spin {
  animation: spin 2s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
