/* Login and store selector visual refresh */
.login-page {
  background:
    radial-gradient(circle at center, rgba(46, 168, 123, 0.10), transparent 28%),
    #ecf0f5;
}

.login-box {
  animation: loginBloom 0.58s cubic-bezier(0.2, 0.9, 0.25, 1) both;
  transform-origin: center center;
  will-change: transform, opacity;
}

.login-logo .text {
  color: #13945f !important;
  text-shadow: 0 10px 18px rgba(19, 148, 95, 0.14);
}

.login-box-body {
  border-color: #24a870;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.login-box-body .form-control,
.login-box-body .input-group-addon,
.login-box-body .btn {
  border-radius: 8px;
}

.login-box-body .input-group .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.login-box-body .input-group-addon {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.store-list .list-group-item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.store-list .list-group-item:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.store-list .activate-store,
.copyright a {
  color: #14885b;
}

.store-list .activate-store:hover,
.store-list .activate-store:focus,
.copyright a:hover {
  color: #0f6e49;
}

@keyframes loginBloom {
  0% {
    opacity: 0;
    transform: scale(0.78);
    filter: blur(8px);
  }

  72% {
    opacity: 1;
    transform: scale(1.025);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .login-box {
    animation: none;
  }
}
