.main-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 100px;
  margin: 0;
  background-image: linear-gradient(to right top, #6231e9, #572eee, #482cf4, #332af9, #0029ff);
}
@media only screen and (min-width: 1400px) and (max-width: 1536px) {
  .main-outer {
    padding: 142px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1280px) {
  .main-outer {
    padding: 72px;
  }
}
@media (max-width: 576px) {
  .main-outer {
    padding: 26px;
  }
}

.background-blobs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.background-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}
.background-blobs .blob.blob-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 5%;
  animation: blobMove 8s infinite alternate ease-in-out;
}
.background-blobs .blob.blob-2 {
  width: 500px;
  height: 500px;
  bottom: 15%;
  right: 10%;
  animation: blobMove 12s infinite alternate ease-in-out;
  animation-delay: 2s;
}

@keyframes blobMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
.glass-card {
  position: relative;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 48px 40px;
  text-align: center;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glass-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px 0 rgba(99, 102, 241, 0.6);
}
.glass-card h1 {
  font-weight: 900;
  font-size: 43px;
  margin-bottom: 32px;
  background-color: #FFF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.glass-card .lead {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}
.glass-card .btn-primary {
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  border: none;
  padding: 16px 48px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(99, 102, 241, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  cursor: pointer;
}
.glass-card .btn-primary:hover, .glass-card .btn-primary:focus {
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  box-shadow: 0 10px 30px 0 rgba(6, 182, 212, 0.6);
  transform: translateY(-3px);
  outline: none;
}
.glass-card .btn-primary .home-icon {
  font-size: 14px;
  line-height: 1;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 576px) {
  .glass-card {
    padding: 32px 18px;
  }
  .glass-card h1 {
    font-size: 30px;
  }
  .glass-card .lead {
    font-size: 1rem;
  }
  .glass-card .btn-primary {
    padding: 12px 36px;
    font-size: 0.8rem;
  }
}
.error-page-main img {
  width: 53%;
  margin: 0 auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1536px) {
  .error-page-main img {
    width: 56%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1280px) {
  .error-page-main img {
    width: 46%;
  }
}
.error-page-main a {
  font-size: 16px;
}
@media only screen and (max-width: 567px) {
  .error-page-main a {
    font-size: 0.8rem;
  }
}
.error-page-main .zoom-animation {
  animation: zoomInOut 4s ease-in-out infinite;
}
@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}/*# sourceMappingURL=thank-error.css.map */