/* Reset body styles */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3F3F3;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
}

/* Main container to center content */
.container {
  text-align: center;
}

/* Extraordinary Loader Styling */
.extra-loader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px auto;
}

/* Individual Circle Animation */
.circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #DFA43F;
  animation: pulse 1.2s infinite ease-in-out alternate;
}

/* Circle Sequence Animation Delays */
.circle:nth-child(1) {
  animation-delay: 0s;
}

.circle:nth-child(2) {
  animation-delay: 0.4s;
}

.circle:nth-child(3) {
  animation-delay: 0.8s;
}

/* Pulsating Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    background-color: #DFA43F;
  }
  100% {
    transform: scale(1.5);
    background-color: #28a745;
  }
}

/* Text styling */
.text h1 {
  font-size: 32px;
  color: #000;
  margin: 15px 0;
}

.text p {
  font-size: 16px;
  color: #666;
}

/* Highlight the brand name */
.highlight {
  color: #DFA43F;
}

/* Contact link styling */
.contact-link {
  color: #00B7FF;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Status messages */
.status {
  margin-top: 10px;
}

.success {
  color: #28a745;
  font-weight: bold;
}

.failure {
  color: #dc3545;
  font-weight: bold;
}

.hidden {
  display: none;
}
