/* Additional styles for registration page */

.register-container {
  width: 450px;
  max-width: 90%;
}

.success-message {
  background-color: rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 0.8rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.password-strength {
  margin-bottom: 15px;
  width: 100%;
  text-align: left;
}

.strength-meter {
  height: 6px;
  display: flex;
  margin-bottom: 5px;
  gap: 3px;
}

.meter-section {
  height: 100%;
  border-radius: 3px;
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

.meter-section.weak.active {
  background-color: #ef4444;
}

.meter-section.medium.active {
  background-color: #f59e0b;
}

.meter-section.strong.active {
  background-color: #10b981;
}

.strength-text {
  color: #94a3b8;
  font-size: 12px;
}

.form-footer {
  margin-top: 15px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

.form-footer a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.form-footer a:hover {
  color: #60a5fa;
  text-decoration: underline;
}
