/* General Resets */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f4f6f8;
}

/* Background Styling */
.background {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("https://fora-production-images.s3.us-west-2.amazonaws.com/maintenance/background.png") no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main content container */
.v6864_78497 {
  width: 480px;
  max-width: 90vw;
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  text-align: center;
  z-index: 2;
  transition: transform 0.3s ease;
}

.v6864_78497:hover {
  transform: translateY(-4px);
}

/* Brand logo styling */
.brand-logo {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo svg {
  width: 70px;
  height: 24px;
}

/* Content block styling */
.v6864_79581 {
  width: 100%;
  position: relative;
}

.v6864_79582 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Title: Using Poppins for a modern, cool look */
.v6864_79579 {
  color: #1a1a1a;
  font-family: 'Roboto Serif', sans-serif;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 8px;
}

/* Body text: Using Open Sans */
.v6864_79580 {
  color: #4a4a4a;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

/* Hide unused elements */
.v6864_79577 {
  display: none;
}

/* Transition effects for text */
.v6864_79579,
.v6864_79580 {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s forwards;
}

.v6864_79579 {
  animation-delay: 0.2s;
}

.v6864_79580 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design tweaks */
@media (max-width: 768px) {
  .v6864_78497 {
    width: 90vw;
    padding: 36px 32px;
    margin: 20px;
  }

  .brand-logo {
    margin-bottom: 28px;
  }

  .v6864_79580 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .v6864_78497 {
    padding: 32px 24px;
  }

  .brand-logo {
    margin-bottom: 24px;
  }

  .v6864_79579 {
    font-size: 22px;
  }

  .v6864_79580 {
    font-size: 14px;
  }

  .v6864_79582 {
    gap: 12px;
  }
}
