/* OAuth Button Styles */
.oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.oauth-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  transition: background 0.15s ease, transform 0.15s ease;
  border: none;
  background: #ff69b4;
}

.oauth-btn:hover {
  background: #ff2d78;
  transform: translateY(-2px);
}

.oauth-btn i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* Provider-specific colors — overridden to match site theme */
.google-btn {
  background: #ff69b4;
  color: #000;
}

.apple-btn {
  background: #ff69b4;
  color: #000;
}

.apple-btn:hover {
  background: #ff2d78;
}

.facebook-btn {
  background: linear-gradient(135deg, #1877F2, #0d66d0);
  border-color: rgba(255, 255, 255, 0.3);
}

.twitter-btn {
  background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #888;
  font-size: 0.9rem;
}

.auth-divider span {
  padding: 0 15px;
  background: #0b0b0b;
  position: relative;
  z-index: 1;
}

.auth-divider::before {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 0 15px;
}

/* Password Strength Styles */
.password-container {
  position: relative;
  margin-bottom: 15px;
}

.password-strength {
  margin-top: 8px;
}

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

.strength-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff4757, #ff1493); /* Brighter Cyber Pink Theme */
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.strength-text {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ff1493; /* Brighter Cyber Pink */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.password-requirements {
  font-size: 0.8rem;
  color: #888;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.req-item {
  transition: all 0.3s ease;
}

.req-item.completed {
  color: #00ff88;
  font-weight: 600;
}

/* Password Match Styles */
.password-match {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 1.2em;
}

.password-match.success {
  color: #00ff88;
}

.password-match.error {
  color: #ff4757;
}

/* Input with Status Styles */
.input-with-status {
  position: relative;
  margin-bottom: 15px;
}

.status-indicator {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-text {
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 120px;
  text-align: right;
}

.status-text.loading {
  color: #888;
  animation: pulse 1s infinite;
}

.status-text.available {
  color: #00ff88;
}

.status-text.taken {
  color: #ff4757;
}

.status-icon {
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.status-icon.show {
  opacity: 1;
}

/* Submit button styling for disabled state */
.app-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Responsive adjustments */
.req-item {
  font-size: 0.85rem;
  color: #ff4757;
  margin-top: 4px;
}

.req-item.completed {
  color: #28c864;
}

.req-item .req-icon {
  font-size: 0.8rem;
  margin-right: 4px;
}

@media (max-width: 480px) {
  .oauth-btn {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .oauth-btn i {
    font-size: 1.1rem;
  }
}
