@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }

#preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

#preloader.active {
    visibility: visible;
    opacity: 1;
}

#preloader img {
    width: 180px;
    height: auto;
    animation: zoom-in-zoom-out 1s ease infinite;
}

.errors {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    float: left;
    clear: both;
    margin-bottom: 24px;
}

.errors .error {
    background-color: red;
    color: white;
    padding: 6px;
    padding-left: 12px;
    padding-right: 12px;
    margin: 6px;
    font-size: 12px;
    border-radius: 25px;
    font-weight: bold;
}
