/* Custom authentication styles - White-label configuration */
/* Hide all Replit branding completely */

/* Hide any element containing "replit" in class, id, or data attributes */
[class*="replit"],
[id*="replit"],
[data-testid*="replit"],
.replit-auth-header,
.replit-branding,
.powered-by-replit,
.provider-branding,
.auth-provider-logo {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Custom CreditApp branding */
.auth-container {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 400px;
  margin: 0 auto;
  border: 2px solid #ff8000;
}

.auth-title {
  color: #ff8000;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Arial', sans-serif;
}

.auth-title::before {
  content: "CreditApp";
  display: block;
  margin-bottom: 0.5rem;
}

.auth-button {
  background-color: #ff8000;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 1rem;
}

.auth-button:hover {
  background-color: #e56f00;
}

/* Override any existing provider styles */
button[class*="provider"],
.oauth-button,
.login-button {
  background-color: #ff8000 !important;
  color: white !important;
  border: none !important;
}

/* Hide any logos or provider branding */
img[src*="replit"],
img[alt*="replit"],
svg[class*="replit"] {
  display: none !important;
}

/* Custom footer */
.auth-footer {
  text-align: center;
  margin-top: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.auth-footer::before {
  content: "Gestión de Créditos Profesional";
  display: block;
}