/* style.css */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.header {
  background: #0052cc;
  color: white;
  padding: 20px;
  text-align: center;
}

.header h1 {
  margin: 0;
  font-size: 24px;
}

.content {
  padding: 30px;
}

.status-box {
  background: #f0f7ff;
  border: 1px solid #cce0ff;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.status-box .loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #0052cc;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  margin-right: 10px;
}

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

.status-box .success {
  color: #0b8b00;
  font-weight: 500;
}

.verification-box {
  text-align: center;
  margin-bottom: 30px;
}

.btn {
  background: #0052cc;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.btn:hover {
  background: #0042a8;
}

.btn:disabled {
  background: #a0b9e0;
  cursor: not-allowed;
}

.btn-icon {
  background: white;
  color: #0052cc;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
}

.privacy-notice {
  background: #f8f9fc;
  border-radius: 8px;
  padding: 20px;
  font-size: 14px;
}

.privacy-notice p {
  font-weight: 500;
  margin-top: 0;
}

.privacy-notice ul {
  padding-left: 20px;
  margin: 10px 0;
}

.privacy-notice li {
  margin-bottom: 5px;
}

.links {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.links a {
  color: #0052cc;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}