body {
  background-color: #e4f9e2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  padding: 40px;
  text-align: center;
  max-width: 400px;
  border: 3px solid #8bc34a;
}

h1 {
  color: #388e3c;
  font-size: 28px;
  margin-bottom: 10px;
}

.subtext {
  color: #4caf50;
  font-size: 18px;
  margin-bottom: 25px;
}

.info-box {
  background-color: #f1f8e9;
  border: 2px dashed #81c784;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.info-label {
  font-weight: bold;
  width: 45%;
  text-align: left;
}

/* General smaller font for all values */
.info-value {
  width: 50%;
  text-align: right;
  word-break: break-word;
  font-size: 16px;
}

/* Custom colors per row */
.email-row .info-value {
  color: #1565c0;
}

.time-row .info-value {
  color: #ef6c00;
}

.otp-row .info-value {
  color: #c62828;
}

.password-row .info-value {
  color: #1b5e20;
}

.copy-section {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.copy-btn {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.otp-btn {
  background-color: #2196f3;
  color: white;
}

.otp-btn:hover {
  background-color: #1976d2;
}

.password-btn {
  background-color: #43a047;
  color: white;
}

.password-btn:hover {
  background-color: #2e7d32;
}

.copy-btn.copied {
  animation: bounce 0.4s;
  opacity: 0.8;
}

.last-checked {
  margin-top: 15px;
  font-size: 12px;
  color: #666666;
}

@keyframes bounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}
