:root {
  --primary: #4361ee;
  --primary-light: #4895ef;
  --primary-dark: #3a0ca3;
  --secondary: #f72585;
  --dark: #212529;
  --light: #f8f9fa;
  --success: #4cc9f0;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark);
  line-height: 1.6;
  font-weight: 500;
}

.verification-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 480px;
  padding: 40px;
  text-align: center;
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.verification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
}

.verification-animation {
  width: 200px;
  height: 200px;
  margin: -20px auto 10px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  letter-spacing: -0.5px;
}

p {
  color: #64748b;
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.recaptcha-container {
  margin: 24px 0;
  display: flex;
  justify-content: center;
  min-height: 78px;
  transition: var(--transition);
}

.grecaptcha-badge {
  visibility: hidden;
}

.verify-btn {
  background: #EB1945;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(235, 25, 69, 0.3);
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.verify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(235, 25, 69, 0.4);
}

.verify-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.loading {
  display: none;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 16px 0;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(235, 25, 69, 0.2);
  border-radius: 50%;
  border-top-color: #EB1945;
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto;
}

.success-message {
  display: none;
  padding: 16px;
  border-radius: 12px;
  margin-top: 24px;
  color: black;
  font-weight: 500;
  border: 1px solid rgba(76, 201, 240, 0.3);
  text-align: center;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
  .verification-card {
    padding: 32px 24px;
    margin: 0 16px;
  }
  
  h1 {
    font-size: 24px;
  }
  
  .recaptcha-container {
    transform: scale(0.85);
    transform-origin: center top;
  }
  
  .verification-animation {
    width: 150px;
    height: 150px;
    margin: -10px auto 5px;
  }
  
  .verify-btn {
    padding: 14px 24px;
  }
}