:root {
  --main-bg-color: #22b573;
  --alt-bg-color: #8DC26F;
  --accent-color: rgb(40, 160, 160);
}
div.message, form, input, .button {
  border-radius: 6px;
}
div.message, form {
}
div.message,
form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  margin: 0 auto;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}
div.message {
  margin: 15px auto;
  text-align: left;
  padding: 20px 45px 20px 40px;
  border-left: 5px solid #111;
  animation: slideup 1.2s ease;
}
form {
  animation: slideup 1.8s ease;
}
div.message.error {
  border-color: red;
}
form input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
form input:focus {
  box-shadow: inset 0 0 0 4px rgba(0,0,0,0.06);
}
.button {
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: 0;
  background: var(--accent-color);
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  transition: all 0.1s ease;
}
.button:hover, .button:active, .button:focus {
  opacity: 0.9;
}
.button:active {
  transform: scale(0.98);
}
form #backtoblog {
  margin: 15px 0 0;
  color: #111;
  font-size: 12px;
}
a, a:visited {
  color: var(--accent-color);
}
a:hover {
  color: var(--main-bg-color);
}
form .register-form {
  display: none;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  color: #1a1a1a;
}
.container .info span {
  color: #4d4d4d;
  font-size: 12px;
}
.container .info span a {
  color: #111;
  text-decoration: none;
}
.container .info span .fa {
  color: #EF3B3A;
}
.logo-container {
  width: 250px;
  max-width: 80%;
  height: auto;
  margin: 8vh auto 0;
  animation: slideup 0.6s ease;
}
.title {
  font-weight: 200;
  font-size: 40px;
  text-align:center;
  margin: 2vh;
  color:white;
}
body {
  min-height: 90vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  background: #22b573;
  background: var(--main-bg-color);
  background: radial-gradient(var(--main-bg-color) 0, var(--alt-bg-color) 100%);
}
@keyframes slideup {
  0% {
      opacity: 0;
  }
  80% {
    opacity: 0;
    transform: translate(0,-10px);
  }
  100% {
      opacity: 1;
      transform: translate(0,0);
  }
}
@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    30% {
        transform: rotate(42deg);
    }
    60% {
        transform: rotate(-22.5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
