
.maintenance-page {
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  max-width:auto;
  width:100%;
  margin: 0;
  font-family: 'Segoe UI', 'Inter', sans-serif;
  justify-content: center;
  align-items: center;
}

.maintenance-page .logo {
  width: 100px;
  height: auto;
  margin-bottom: 1.5rem;
}

.icon-container {
  font-size: 3rem;
  animation: bounce 1.5s infinite;
  margin-bottom: 1.2rem;
} 

.maintenance-page h1 {
  font-size: 1.8rem;
  color: #b30000;
  margin-bottom: 1rem;
}

.maintenance-page p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
}

.content-maintenance .btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #b30000;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.content-maintenance .btn:hover {
  background-color: #800000;
}

/* Animation bounce */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
