* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a6732 0%, #0f9b4c 50%, #0a6732 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-container {
  width: 100%;
  max-width: 450px;
  position: relative;
}

.login-wrapper {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(10, 103, 50, 0.2);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(10, 103, 50, 0.1);
}

.section {
  padding: 40px 30px;
  display: none;
  animation: fadeIn 0.6s ease-in-out;
}

.section.active {
  display: block;
}

/* Intro Section Styles */
.intro-content {
  text-align: center;
}

.logo-section {
  margin-bottom: 30px;
}

.logo-icon {
  font-size: 3rem;
  color: #0a6732;
  margin-bottom: 15px;
  display: block;
}

.system-title {
  font-size: 1.8rem;
  color: #0a6732;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(10, 103, 50, 0.1);
}

.intro-text h2 {
  font-size: 1.3rem;
  color: #0f9b4c;
  margin-bottom: 10px;
  font-weight: 600;
}

.intro-description {
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(10, 103, 50, 0.08), rgba(15, 155, 76, 0.12));
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(10, 103, 50, 0.1);
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(10, 103, 50, 0.15), rgba(15, 155, 76, 0.2));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10, 103, 50, 0.2);
}

.feature-item i {
  color: #0a6732;
  font-size: 1.3rem;
  text-shadow: 0 1px 3px rgba(10, 103, 50, 0.2);
}

.feature-item span {
  color: #0a6732;
  font-size: 0.9rem;
  font-weight: 600;
}

.get-started-btn {
  background: linear-gradient(135deg, #0a6732, #0f9b4c);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(10, 103, 50, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(10, 103, 50, 0.4);
}

/* Login Section Styles */
.login-content {
  position: relative;
}

.back-btn {
  position: absolute;
  top: -10px;
  left: 0;
  background: none;
  border: none;
  color: #666;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.back-btn:hover {
  color: #0a6732;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20px;
}

.login-icon {
  font-size: 4rem;
  color: #0a6732;
  margin-bottom: 15px;
}

.login-header h2 {
  font-size: 1.8rem;
  color: #0a6732;
  margin-bottom: 5px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(10, 103, 50, 0.1);
}

.login-header p {
  color: #0f9b4c;
  font-size: 1rem;
  font-weight: 500;
}

.login-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #0a6732;
  font-size: 1.1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 15px 15px 15px 50px;
  border: 2px solid rgba(10, 103, 50, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #0a6732;
  box-shadow: 0 0 0 3px rgba(10, 103, 50, 0.15);
  background: white;
}

.form-input:focus + .input-icon {
  color: #0f9b4c;
  transform: scale(1.1);
}

.toggle-password {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #0a6732;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.toggle-password:hover {
  color: #0f9b4c;
  transform: scale(1.1);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #0a6732;
  font-weight: 500;
}

.remember-me input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #e1e1e1;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.remember-me input[type="checkbox"]:checked + .checkmark {
  background: #0a6732;
  border-color: #0a6732;
}

.remember-me input[type="checkbox"]:checked + .checkmark:after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.forgot-password {
  color: #0a6732;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #0f9b4c;
}

.login-button {
  width: 100%;
  background: linear-gradient(135deg, #0a6732, #0f9b4c);
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(10, 103, 50, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(10, 103, 50, 0.4);
}

.login-button:active {
  transform: translateY(0);
}

.login-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-text,
.btn-icon {
  transition: all 0.3s ease;
}

.login-button:hover .btn-icon {
  transform: translateX(5px);
}

.login-footer {
  text-align: center;
  margin-top: 20px;
}

.login-footer p {
  color: #666;
  font-size: 0.9rem;
}

.login-footer a {
  color: #0a6732;
  text-decoration: none;
  transition: color 0.3s ease;
}

.login-footer a:hover {
  color: #0f9b4c;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  flex-direction: column;
}

.spinner {
  width: 80px;
  height: 80px;
  position: relative;
  margin-bottom: 20px;
}

.spinner-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top: 4px solid #0a6732;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
  animation-delay: 0.25s;
  border-top-color: #0f9b4c;
}

.spinner-ring:nth-child(3) {
  animation-delay: 0.5s;
  border-top-color: #0a6732;
}

.spinner-ring:nth-child(4) {
  animation-delay: 0.75s;
  border-top-color: #0f9b4c;
}

.loading-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4caf50;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  animation: slideIn 0.3s ease-out;
}

.success-message i {
  font-size: 1.2rem;
}

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

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

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-container {
    max-width: 100%;
    padding: 0 10px;
  }

  .section {
    padding: 30px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .system-title {
    font-size: 1.5rem;
  }

  .login-header h2 {
    font-size: 1.5rem;
  }

  .form-input {
    padding: 12px 12px 12px 45px;
  }

  .input-icon {
    left: 12px;
  }
}

@media (max-width: 480px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .feature-item span {
    font-size: 0.8rem;
  }

  .get-started-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .login-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* OTP Content Styles */
.otp-content {
  position: relative;
}

.otp-header {
  text-align: center;
  margin-bottom: 35px;
  margin-top: 20px;
}

.otp-icon {
  font-size: 4rem;
  color: #0a6732;
  margin-bottom: 15px;
  text-shadow: 0 3px 6px rgba(10, 103, 50, 0.2);
}

.otp-header h2 {
  font-size: 1.8rem;
  color: #0a6732;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(10, 103, 50, 0.1);
}

.otp-header p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.5;
}

.email-display {
  color: #0a6732 !important;
  font-weight: 600;
  font-size: 1.1rem !important;
  margin-bottom: 0 !important;
}

/* OTP Input Container */
.otp-input-container {
  margin-bottom: 30px;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.otp-input {
  width: 50px;
  height: 55px;
  border: 2px solid rgba(10, 103, 50, 0.2);
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a6732;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}

.otp-input:focus {
  border-color: #0a6732;
  box-shadow: 0 0 0 3px rgba(10, 103, 50, 0.15);
  background: white;
  transform: scale(1.05);
}

.otp-input:not(:placeholder-shown) {
  border-color: #0f9b4c;
  background: rgba(15, 155, 76, 0.05);
}

.otp-input.error {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.05);
  animation: shake 0.5s ease-in-out;
}

.otp-input.success {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
}

.otp-help-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0a6732;
  font-size: 0.9rem;
  font-weight: 500;
}

.otp-help-text i {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Timer and Resend */
.otp-timer {
  margin-bottom: 25px;
  text-align: center;
}

.timer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0a6732;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.timer-container i {
  font-size: 1.1rem;
  color: #0f9b4c;
}

#timer-display {
  color: #0f9b4c;
  font-weight: 700;
  font-size: 1.1rem;
}

.resend-container {
  animation: fadeIn 0.5s ease-in-out;
}

.resend-container p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.resend-btn {
  background: none;
  border: 2px solid #0a6732;
  color: #0a6732;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.resend-btn:hover {
  background: #0a6732;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10, 103, 50, 0.3);
}

.resend-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Verify Button */
.verify-button {
  width: 100%;
  background: linear-gradient(135deg, #0a6732, #0f9b4c);
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(10, 103, 50, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.verify-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(10, 103, 50, 0.4);
}

.verify-button:active:not(:disabled) {
  transform: translateY(0);
}

.verify-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  background: linear-gradient(135deg, #ccc, #999);
  box-shadow: none;
}

.verify-button:hover:not(:disabled) .btn-icon {
  transform: translateX(5px);
}

/* OTP Footer */
.otp-footer {
  text-align: center;
  margin-top: 25px;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0a6732;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(10, 103, 50, 0.05), rgba(15, 155, 76, 0.08));
  border-radius: 8px;
  border: 1px solid rgba(10, 103, 50, 0.1);
}

.security-note i {
  font-size: 1rem;
  color: #0f9b4c;
}

.otp-footer p {
  color: #666;
  font-size: 0.9rem;
}

.otp-footer a {
  color: #0a6732;
  text-decoration: none;
  transition: color 0.3s ease;
}

.otp-footer a:hover {
  color: #0f9b4c;
}

/* Animations */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive Design for OTP */
@media (max-width: 768px) {
  .otp-inputs {
    gap: 8px;
  }
  
  .otp-input {
    width: 45px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .otp-header h2 {
    font-size: 1.5rem;
  }
  
  .otp-icon {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .otp-inputs {
    gap: 6px;
  }
  
  .otp-input {
    width: 40px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .verify-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .resend-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Container and Wrapper */
.pwd-setup-container {
  width: 100%;
  max-width: 520px;
  position: relative;
}

.pwd-setup-wrapper {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(10, 103, 50, 0.2);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(10, 103, 50, 0.1);
}

.pwd-setup-section {
  padding: 40px 30px;
  display: none;
  animation: pwdFadeIn 0.6s ease-in-out;
}

.pwd-setup-section.active {
  display: block;
}

/* Header Styles */
.pwd-setup-content {
  position: relative;
}

.pwd-setup-header {
  text-align: center;
  margin-bottom: 35px;
}

.pwd-setup-icon {
  font-size: 4rem;
  color: #0a6732;
  margin-bottom: 15px;
  text-shadow: 0 3px 6px rgba(10, 103, 50, 0.2);
  animation: pwdIconPulse 2s ease-in-out infinite;
}

.pwd-setup-title {
  font-size: 1.9rem;
  color: #0a6732;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(10, 103, 50, 0.1);
}

.pwd-setup-subtitle {
  color: #0f9b4c;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

/* User Info Section */
.pwd-setup-user-info {
  background: linear-gradient(135deg, rgba(10, 103, 50, 0.05), rgba(15, 155, 76, 0.08));
  border-radius: 12px;
  padding: 15px;
  margin-top: 20px;
  border: 1px solid rgba(10, 103, 50, 0.1);
}

.pwd-user-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pwd-user-badge i {
  font-size: 1.5rem;
  color: #0a6732;
}

.pwd-user-name {
  font-weight: 600;
  color: #0a6732;
  font-size: 1.1rem;
}

.pwd-temp-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0f9b4c;
  font-size: 0.9rem;
  font-weight: 500;
}

.pwd-temp-notice i {
  font-size: 0.9rem;
}

/* Form Styles */
.pwd-setup-form {
  margin-bottom: 25px;
}

.pwd-form-group {
  margin-bottom: 25px;
}

.pwd-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0a6732;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pwd-form-label i {
  font-size: 1rem;
  color: #0f9b4c;
}

.pwd-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.pwd-input-icon {
  position: absolute;
  left: 15px;
  color: #0a6732;
  font-size: 1.1rem;
  z-index: 2;
  transition: all 0.3s ease;
}

.pwd-form-input {
  width: 100%;
  padding: 15px 50px 15px 50px;
  border: 2px solid rgba(10, 103, 50, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  outline: none;
  color: #333;
}

.pwd-form-input:focus {
  border-color: #0a6732;
  box-shadow: 0 0 0 3px rgba(10, 103, 50, 0.15);
  background: white;
}

.pwd-form-input:focus + .pwd-input-icon {
  color: #0f9b4c;
  transform: scale(1.1);
}

.pwd-toggle-btn {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #0a6732;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  z-index: 2;
}

.pwd-toggle-btn:hover {
  color: #0f9b4c;
  transform: scale(1.1);
}

/* Password Strength Indicator */
.pwd-strength-container {
  margin-top: 8px;
}

.pwd-strength-bar {
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}

.pwd-strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.pwd-strength-fill.weak {
  width: 25%;
  background: linear-gradient(90deg, #f44336, #ff5722);
}

.pwd-strength-fill.fair {
  width: 50%;
  background: linear-gradient(90deg, #ff9800, #ffc107);
}

.pwd-strength-fill.good {
  width: 75%;
  background: linear-gradient(90deg, #2196f3, #03a9f4);
}

.pwd-strength-fill.strong {
  width: 100%;
  background: linear-gradient(90deg, #4caf50, #8bc34a);
}

.pwd-strength-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
}

/* Password Match Indicator */
.pwd-match-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
}

.pwd-match-indicator.show {
  opacity: 1;
}

.pwd-match-indicator.match {
  color: #4caf50;
}

.pwd-match-indicator.no-match {
  color: #f44336;
}

.pwd-match-indicator.match i {
  color: #4caf50;
}

.pwd-match-indicator.no-match i {
  color: #f44336;
}

/* Password Requirements */
.pwd-requirements-container {
  background: linear-gradient(135deg, rgba(10, 103, 50, 0.03), rgba(15, 155, 76, 0.05));
  border: 1px solid rgba(10, 103, 50, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.pwd-requirements-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0a6732;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.pwd-requirements-title i {
  color: #0f9b4c;
  font-size: 1.1rem;
}

.pwd-requirements-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pwd-requirement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.pwd-requirement-item i {
  font-size: 0.9rem;
  min-width: 16px;
  transition: all 0.3s ease;
}

.pwd-requirement-item.met {
  color: #4caf50;
  font-weight: 500;
}

.pwd-requirement-item.met i {
  color: #4caf50;
}

.pwd-requirement-item:not(.met) {
  color: #f44336;
}

.pwd-requirement-item:not(.met) i {
  color: #f44336;
}

/* Security Tips */
.pwd-security-tips {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.pwd-tip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f57c00;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.pwd-tip-header i {
  color: #ff9800;
  font-size: 1.1rem;
}

.pwd-tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pwd-tip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #f57c00;
  font-weight: 500;
}

.pwd-tip-item i {
  font-size: 0.8rem;
  color: #ff9800;
  min-width: 14px;
}

/* Submit Button */
.pwd-setup-button {
  width: 100%;
  background: linear-gradient(135deg, #0a6732, #0f9b4c);
  color: white;
  border: none;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(10, 103, 50, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.pwd-setup-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(10, 103, 50, 0.4);
}

.pwd-setup-button:active:not(:disabled) {
  transform: translateY(0);
}

.pwd-setup-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  background: linear-gradient(135deg, #ccc, #999);
  box-shadow: none;
}

.pwd-setup-button:hover:not(:disabled) .pwd-btn-icon {
  transform: translateX(5px);
}

.pwd-btn-text,
.pwd-btn-icon {
  transition: all 0.3s ease;
}

/* Footer */
.pwd-setup-footer {
  text-align: center;
  margin-top: 20px;
}

.pwd-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0a6732;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(10, 103, 50, 0.05), rgba(15, 155, 76, 0.08));
  border-radius: 8px;
  border: 1px solid rgba(10, 103, 50, 0.1);
}

.pwd-security-note i {
  font-size: 1rem;
  color: #0f9b4c;
}

.pwd-help-text {
  color: #666;
  font-size: 0.9rem;
}

.pwd-help-link {
  color: #0a6732;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pwd-help-link:hover {
  color: #0f9b4c;
}

/* Loading Overlay */
.pwd-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  flex-direction: column;
}

.pwd-spinner {
  width: 80px;
  height: 80px;
  position: relative;
  margin-bottom: 20px;
}

.pwd-spinner-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top: 4px solid #0a6732;
  border-radius: 50%;
  animation: pwdSpin 1s linear infinite;
}

.pwd-spinner-ring:nth-child(2) {
  animation-delay: 0.25s;
  border-top-color: #0f9b4c;
}

.pwd-spinner-ring:nth-child(3) {
  animation-delay: 0.5s;
  border-top-color: #0a6732;
}

.pwd-spinner-ring:nth-child(4) {
  animation-delay: 0.75s;
  border-top-color: #0f9b4c;
}

.pwd-loading-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Success Message */
.pwd-success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4caf50;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  animation: pwdSlideIn 0.3s ease-out;
}

.pwd-success-message i {
  font-size: 1.2rem;
}

/* Animations */
@keyframes pwdFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pwdIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

@keyframes pwdSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pwdShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .pwd-setup-container {
    max-width: 100%;
    padding: 0 10px;
  }

  .pwd-setup-section {
    padding: 30px 20px;
  }

  .pwd-setup-title {
    font-size: 1.6rem;
  }

  .pwd-setup-icon {
    font-size: 3rem;
  }

  .pwd-form-input {
    padding: 12px 45px 12px 45px;
  }

  .pwd-input-icon {
    left: 12px;
  }

  .pwd-toggle-btn {
    right: 12px;
  }

  .pwd-tips-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .pwd-setup-button {
    padding: 14px 20px;
    font-size: 1rem;
  }

  .pwd-requirements-container,
  .pwd-security-tips {
    padding: 15px;
  }

  .pwd-setup-user-info {
    padding: 12px;
  }

  .pwd-user-badge {
    flex-direction: column;
    gap: 5px;
  }
}