  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

.reset-container {
  width: 100%;
  max-width: 450px;
  padding: 20px;
}

.reset-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.reset-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #198754, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.reset-icon i {
  font-size: 36px;
  color: white;
}

.reset-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.reset-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.password-strength {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0;
  transition: all 0.3s ease;
}

.strength-weak { width: 25%; background: #dc3545; }
.strength-fair { width: 50%; background: #ffc107; }
.strength-good { width: 75%; background: #0dcaf0; }
.strength-strong { width: 100%; background: #198754; }

.password-requirements {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

.requirement {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.requirement i {
  font-size: 12px;
}

.requirement.valid {
  color: #198754;
}

.requirement.invalid {
  color: #999;
}

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

.logo-icon {
  width: 50px;
  height: 50px;
  background: #198754;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.logo-icon i {
  font-size: 24px;
  color: white;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.error-state .reset-icon {
  background: linear-gradient(135deg, #dc3545, #e74c3c);
}

.success-state .reset-icon {
  background: linear-gradient(135deg, #198754, #20c997);
}

.btn-success {
  background: #198754;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 10px;
}

.btn-success:hover {
  background: #157347;
