* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background: #1a1a1a;
  color: #ffffff;
}

.auth-container {
  display: flex;
  min-height: 100vh;
}

.text-white{
  color: #fff;
}

.text-success{
  color: #a3e635;
}

h5{
  font-weight: 300;
}

h-16{
  height: 4rem;
}
/* Danger Zone */
.danger-zone {
  border-color: rgba(239, 68, 68, 0.3);
}

.danger-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.danger-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 12px;
}

.danger-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #a3e635;
}

.danger-desc {
  font-size: 13px;
  color: #888;
}

.btn-danger-outline,
.btn-danger {
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-danger-outline {
  background: transparent;
  border: 1px solid #a3e635;
  color: #a3e635;
}

.btn-danger-outline:hover {
  background: rgba(239, 68, 68, 0.1);
}

.btn-danger {
  background: #a3e635;
  border: none;
  color: #000;
}

.btn-danger:hover {
  background: #a3e635;
  box-shadow: 0 4px 8px #a3e6354d;
}


.card-beneficios{
  background: none;
  font-size: 12px !important;
  border: 1px solid #a3e635;
  border-radius: 10px;
  padding: 1rem;
  padding-left: 2rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  width: 100%;
}

ul {
  list-style: none; 
  font-size: 12px !important;
}

ul li::before {
  content: "\2022"; 
  color: #a3e635; 
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
/* My Card Section */
.card-section {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 16px;
  padding: 24px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 14px;
}

.card-filter {
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
}

.credit-card {
  background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
  border-radius: 20px;
  padding: 24px;
  color: #0d0d0d;
  position: relative;
  margin-bottom: 16px;
  min-height: 200px;
}

.card-chip {
  width: 48px;
  height: 38px;
  background: rgba(13, 13, 13, 0.1);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  gap: 3px;
  margin-bottom: 16px;
}

.chip-line {
  height: 2px;
  background: rgba(13, 13, 13, 0.3);
  border-radius: 1px;
}

.contactless {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #0d0d0d;
  opacity: 0.8;
}

.card-number {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
  margin-top: 12px;
}

.card-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.card-details {
  display: flex;
  gap: 32px;
}

.card-detail {
  flex: 1;
}

.detail-label {
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.detail-value {
  font-size: 16px;
  font-weight: 600;
}

.card-indicators {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.indicator {
  width: 8px;
  height: 8px;
  background: #3a3a3a;
  border-radius: 50%;
}

.indicator.active {
  background: #a3e635;
}


/* Left Side - Branding */
.auth-left {
  flex: 1;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.auth-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.auth-branding {
  max-width: 500px;
  z-index: 1;
}

.brand-logo {
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin-bottom: 60px;
}

.brand-illustration {
  position: relative;
  height: 300px;
  margin-bottom: 60px;
}

.illustration-card {
  position: absolute;
  width: 280px;
  height: 180px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.card-1 {
  background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
  top: 0;
  left: 0;
  transform: rotate(-5deg);
  z-index: 3;
}

.card-2 {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  top: 40px;
  left: 40px;
  transform: rotate(3deg);
  opacity: 0.8;
  z-index: 2;
}

.card-3 {
  background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
  top: 80px;
  left: 80px;
  transform: rotate(-2deg);
  opacity: 0.6;
  z-index: 1;
}

.brand-tagline {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.brand-description {
  font-size: 18px;
  color: #888;
  line-height: 1.6;
}

/* Right Side - Form */
.auth-right {
  flex: 1;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.auth-form-container {
  width: 100%;
  max-width: 440px;
}

.auth-header {
  margin-bottom: 40px;
}

.auth-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.auth-header p {
  color: #888;
  font-size: 16px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  padding: 14px 16px;
  transition: all 0.2s;
}

.input-wrapper:focus-within {
  border-color: #a3e635;
  box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.1);
}

.input-wrapper svg {
  color: #666;
  margin-right: 12px;
  flex-shrink: 0;
}

.input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
}

.input-wrapper input::placeholder {
  color: #666;
}

.toggle-password {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  color: #666;
  transition: color 0.2s;
}

.toggle-password:hover {
  color: #a3e635;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #3a3a3a;
  background: #2a2a2a;
  cursor: pointer;
  accent-color: #a3e635;
}

.forgot-link {
  color: #a3e635;
  text-decoration: none;
  transition: opacity 0.2s;
}

.forgot-link:hover {
  opacity: 0.8;
}

.btn-primary {
  background: #a3e635;
  color: #0d0d0d;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #84cc16;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(163, 230, 53, 0.2);
}

.btn-primary svg {
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.divider {
  position: relative;
  text-align: center;
  margin: 8px 0;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #3a3a3a;
}

.divider span {
  position: relative;
  background: #1a1a1a;
  padding: 0 16px;
  color: #666;
  font-size: 14px;
}

.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-social {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  padding: 14px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-social:hover {
  background: #3a3a3a;
  transform: translateY(-1px);
}

.auth-footer {
  text-align: center;
  margin-top: 8px;
}

.auth-footer p {
  color: #888;
  font-size: 14px;
}

.link-primary {
  color: #a3e635;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.link-primary:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .auth-left {
    display: none;
  }
  
  .auth-right {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .auth-right {
    padding: 32px 24px;
  }
  
  .auth-header h2 {
    font-size: 28px;
  }
  
  .auth-header p {
    font-size: 14px;
  }
  
  .social-login {
    grid-template-columns: 1fr;
  }
}
