/**
 * Custom Authentication Forms Styles
 * Clean, professional styling with no WordPress branding
 */

.pickleco-auth-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 20px;
}

.pickleco-auth-form {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pickleco-auth-form h2 {
  text-align: center;
  margin: 0 0 20px 0;
  color: #333;
  font-size: 28px;
  font-weight: 600;
}

.pickleco-register-note {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 0 0 30px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 4px;
}

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

.pickleco-form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.pickleco-form-group input[type="text"],
.pickleco-form-group input[type="email"],
.pickleco-form-group input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.pickleco-form-group input[type="text"]:focus,
.pickleco-form-group input[type="email"]:focus,
.pickleco-form-group input[type="password"]:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.pickleco-form-group input[type="checkbox"] {
  margin-right: 8px;
}

.pickleco-btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.pickleco-btn-primary {
  background: #000000;
  color: #ffffff;
  width: 100%;
}

.pickleco-btn-primary:hover {
  background: #333333;
  color: #ffffff;
}

.pickleco-btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

.pickleco-btn-secondary:hover {
  background: #000000;
  color: #ffffff;
}

.pickleco-error {
  background: #f8d7da;
  color: #721c24;
  padding: 12px 16px;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
}

.pickleco-auth-links {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.pickleco-auth-links a {
  color: #007cba;
  text-decoration: none;
  font-size: 14px;
}

.pickleco-auth-links a:hover {
  text-decoration: underline;
}

/* Members Area Styles */
.pickleco-members-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.pickleco-container {
  background: #ffffff;
}

.pickleco-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.pickleco-card-content {
  padding: 30px;
}

.pickleco-text-center {
  text-align: center;
}

.pickleco-actions {
  margin-top: 20px;
}

.pickleco-actions .pickleco-btn {
  margin: 0 10px;
  width: auto;
  min-width: 120px;
}

.pickleco-members-header {
  text-align: center;
  margin-bottom: 30px;
}

.pickleco-members-title {
  font-size: 32px;
  margin: 0 0 10px 0;
  color: #333;
}

.pickleco-member-status {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.pickleco-member-status.pickleco-active {
  background: #d4edda;
  color: #155724;
}

.pickleco-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.pickleco-stat-card {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.pickleco-stat-value {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.pickleco-stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  font-weight: 500;
}

.pickleco-referral-input-group {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.pickleco-referral-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.pickleco-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.pickleco-tier-card {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
}

.pickleco-tier-card.pickleco-tier-locked {
  background: #f8f9fa;
  opacity: 0.7;
}

.pickleco-tier-card.pickleco-tier-unlocked {
  background: #ffffff;
}

.pickleco-tier-card.pickleco-tier-current {
  border-color: #007cba;
  background: #f0f8ff;
}

.pickleco-tier-card h4 {
  margin: 0 0 10px 0;
  color: #333;
}

.pickleco-tier-status {
  margin-top: 15px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.pickleco-tier-current .pickleco-tier-status {
  color: #007cba;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pickleco-auth-container {
    padding: 20px 15px;
  }

  .pickleco-auth-form {
    padding: 30px 20px;
  }

  .pickleco-stats-grid {
    grid-template-columns: 1fr;
  }

  .pickleco-tiers-grid {
    grid-template-columns: 1fr;
  }

  .pickleco-actions .pickleco-btn {
    display: block;
    margin: 10px 0;
    width: 100%;
  }

  .pickleco-referral-input-group {
    flex-direction: column;
  }
}
