* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  min-width: 300px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.status-text {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 600;
}

/* Loader */
.loader {
  width: 70px;
  height: 70px;
  border: 6px solid #e0e0e0;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success */
.success {
  color: #1e8e3e;
}

.success-icon {
  font-size: 64px;
}

/* Failure */
.error {
  color: #d93025;
}

.error-icon {
  font-size: 64px;
}

/* Responsive */
@media (max-width: 480px) {
  .card {
    padding: 32px 24px;
  }

  .status-text {
    font-size: 20px;
  }
}
