
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

.icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  animation: spin 4s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(15deg);
  }

  75% {
    transform: rotate(-15deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e94560, #0f3460, #53d8fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p.subtitle {
  font-size: 1.1rem;
  color: #a0aec0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.progress-fill {
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, #e94560, #53d8fb);
  border-radius: 3px;
  animation: progress 2s ease-in-out infinite alternate;
}

@keyframes progress {
  from {
    width: 40%;
  }

  to {
    width: 80%;
  }
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(83, 216, 251, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #53d8fb;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #e94560, #c0392b);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.35);
}

  .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.55);
  }

  .login-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
  }
