* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, sans-serif; }

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #1f2937; }

.maintenance-card {
  background: linear-gradient(180deg, #f9f2dc, #f3e7c7);
  width: 100%;
  max-width: 520px;
  padding: 42px 34px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15); }

.logo {
  width: 96px;
  height: auto;
  margin: 0 auto 22px;
  display: block; }

h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px; }

p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 28px; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12); }

.dots {
  display: inline-flex;
  margin-left: 4px; }
  .dots span {
    font-size: 28px;
    line-height: 1;
    animation: dotBlink 1.5s infinite; }
  .dots span:nth-child(2) {
    animation-delay: .3s; }
  .dots span:nth-child(3) {
    animation-delay: .6s; }

@keyframes dotBlink {
  0% {
    opacity: 0; }
  20% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*# sourceMappingURL=maintenance.css.map */
