.verification-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.verification-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 54, 95, 0.1);
  width: 90%;
  max-width: 550px;
  padding: 40px;
  text-align: center;
  animation: fadeIn 0.5s ease-out;
}

.verification-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.verification-header {
  margin-bottom: 30px;
}

.verification-header h2 {
  color: #00365f;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.verification-subtitle {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}

.emphasis {
  color: #00365f;
  font-weight: 600;
}

.otp-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
}

.otp-input {
  width: 55px;
  height: 60px;
  border: 2px solid #eef1f5;
  border-radius: 12px;
  background: #f8f9fa;
  font-size: 24px;
  font-weight: 600;
  color: #00365f;
  text-align: center;
  transition: all 0.3s ease;
}

.otp-input:focus {
  border-color: #00365f;
  background: #fff;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 54, 95, 0.1);
  transform: translateY(-2px);
}

.verification-btn {
  width: 100%;
  margin-top: 20px;
}

.verification-btn:disabled {
  background: #a0a8b3;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.resend-container {
  margin-top: 30px;
  color: #6c757d;
}

.resend-btn {
  background: none;
  border: none;
  color: #00365f;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease;
  text-decoration: underline;
}

.resend-btn:hover {
  color: #d1641a;
}

.countdown {
  color: #6c757d;
}

.countdown span {
  color: #00365f;
  font-weight: 600;
}

.verification-alert {
  margin-bottom: 20px;
  border-radius: 12px;
  text-align: left;
}

.loading-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 54, 95, 0.1);
  border-radius: 50%;
  border-top-color: #00365f;
  animation: spin 1s ease-in-out infinite;
  margin: 40px auto;
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive styles */
@media (max-width: 768px) {
  .verification-card {
    padding: 30px;
  }
  
  .otp-container {
    gap: 8px;
  }
  
  .otp-input {
    width: 45px;
    height: 55px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .verification-card {
    padding: 25px 15px;
    width: 95%;
  }
  
  .verification-logo {
    max-width: 150px;
  }
  
  .verification-header h2 {
    font-size: 24px;
  }
  
  .verification-subtitle {
    font-size: 14px;
  }
  
  .otp-container {
    gap: 6px;
  }
  
  .otp-input {
    width: 40px;
    height: 50px;
    font-size: 18px;
  }
}
