/*Write your custom css in this file.*/
/* Error file */

.error-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.error-page {
  height: 100vh;
  font-family: "Poppins", sans-serif;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/subscription_bg.png") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  text-align: center;
}

.error-page::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  z-index: 0;
}
.error-page .subscription__logo {
  position: fixed;
  top: 25px;
  left: 35px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.error-page .subscription__logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.error-page .subscription__content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 700px;
}
.error-page .subscription__code {
  font-size: 7.5rem;
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(to bottom, #5bbcf5 0%, #477de1 50%, #7c65d7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.error-page .subscription__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0074E8;
  margin-bottom: 1rem;
}
.error-page .subscription__message {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.error-page .subscription__button {
  display: inline-block;
  background: #0078ff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.error-page .subscription__button:hover {
  background: #005ec7;
}
.error-page .subscription__footer {
  margin-top: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}
.error-page .subscription__footer strong {
  color: #000;
}