/*
@author: Oscar Alderete <me@oscaralderete.com>
@website: https://oscaralderete.com
*/
html, body {
  min-height: 100%;
  height: 100%;
}

.login-head {
  display: flex;
  flex-direction: row;
}
.login-head img {
  height: 3rem;
  width: auto;
}
.login-head main {
  flex: 1;
  text-align: center;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.validation_error {
  animation: fadeIn 1s ease-in;
  padding: 0.5rem 1rem;
}

.flex {
  display: flex;
  flex-direction: row;
}
.flex nav {
  display: flex;
  flex-direction: column;
}
.flex nav img {
  max-width: 10rem;
}
.flex nav ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.flex main {
  flex: 1;
}

.right {
  text-align: right;
}

.fade-enter-active,
.fade-leave-active {
  transition-property: opacity;
  transition-duration: 0.25s;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

[v-cloak] {
  display: none;
}
