/* numerar todas as seções */
/* 1. GLOBAL STYLES */
/* 2. LOGIN STYLES */
/* 3. LIVE MAP STYLES */
/* 4. REGISTER STYLES */
/* 5. PILOTS PAGE STYLES */
/* 6. INLINE STATS COUNTER SECTION */
/* 7. REGISTERED USER STEPS */
/* 8. Pending Registered Users Steps */
/* 9. Email Verification Section */


/**************************************************************************
 * 1 GLOBAL STYLES
 **************************************************************************/

.page-hero {
  position: relative; /* OBRIGATÓRIO para o ::before funcionar no sítio certo */
  padding: 105px 0 10px;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  text-align: center;
  z-index: 1; /* Garante que o texto fica à frente de tudo */
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: linear-gradient(
    135deg,
    rgba(10, 21, 42, 0.9) 0%,
    rgba(10, 21, 42, 0.1) 100%
  );
  z-index: -1;
}

.page-hero h1,
.page-hero p {
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.hero-badge {
  display: inline-block;
  background: rgba(39, 154, 228, 0.85);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.muted {
  color: #949496;
  font-size: 0.8rem;
}

/* 1. Altera o fundo do campo principal (onde se clica) */
.select2-container--default .select2-selection--single {
  background-color: var(--background-color) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  height: 42px !important; /* Ajuste para alinhar com os seus inputs */
}

/* 2. Altera a cor do texto selecionado e do placeholder */
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #ffffff !important;
  line-height: 40px !important; /* Alinha o texto verticalmente */
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* 3. Altera a cor da seta de seleção (arrow) */
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent !important;
}

/* 4. Altera o fundo da lista suspensa (dropdown) quando abre */
.select2-dropdown {
  background-color: var(--background-color) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

/* 5. Altera o comportamento das opções ao passar o rato (hover/focus) */
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: var(--accent-color) !important;
  color: #ffffff !important;
}

/* 6. Altera a cor das opções não selecionadas */
.select2-results__option {
  background-color: transparent !important;
  color: #ffffff !important;
}

/**************************************************************************
 * 2. LOGIN STYLES
 **************************************************************************/
.login-section {
  min-height: 100vh;
  display: flex;

  justify-content: center;
  padding: 60px 0 80px;
}

.login-wrapper {
  background: var(--surface-color);
  border-radius: 1rem;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.login-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.3);
}

.login-info {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 85%) 0%,
    var(--surface-color) 100%
  );
  padding: 3rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.login-info::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(39, 154, 228, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.login-info .info-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.login-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.login-info .tagline {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.info-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.info-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--default-color);
  font-size: 0.9rem;
}

.info-features li i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.pilot-quote {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--accent-color);
}

.pilot-quote p {
  font-style: italic;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--default-color);
}

.pilot-quote .quote-author {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.login-card {
  padding: 2.5rem;
  background: var(--surface-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header .logo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 40%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.login-header .logo-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.login-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin: 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  display: block;
  font-size: 0.9rem;
}

.form-control-login {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  color: var(--default-color);
  transition: all 0.3s;
}

.form-control-login:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(39, 154, 228, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-control-login::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.checkbox-label input {
  accent-color: var(--accent-color);
}

.forgot-link {
  font-size: 0.85rem;
  color: var(--accent-color);
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

.btn-login {
  width: 100%;
  padding: 0.875rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-login:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

.login-footer {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.login-footer p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.login-footer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.login-footer a:hover {
  text-decoration: underline;
}

.demo-badge {
  display: inline-block;
  background: rgba(39, 154, 228, 0.1);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  margin-top: 1rem;
  border: 1px solid rgba(39, 154, 228, 0.2);
}

.demo-badge i {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .login-info {
    padding: 2rem;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .info-features li {
    justify-content: center;
  }
  .pilot-quote {
    text-align: left;
  }
  .login-card {
    padding: 1.75rem;
  }
  .login-section {
    padding: 100px 0 60px;
  }
}

/**************************************************************************
 * 3. LIVE MAP STYLES
 **************************************************************************/
.map-section {
  padding: 60px 0 80px;
  background: var(--background-color);
  position: relative;
  z-index: 900;
}
.map-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
#liveMap {
  height: 500px;
  border-radius: 12px;
  background: #1a2a3a;
}
.flight-stats {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-badge {
  background: rgba(39, 154, 228, 0.15);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(39, 154, 228, 0.3);
}
@media (max-width: 768px) {
  #liveMap {
    height: 350px;
  }
}

/**************************************************************************
 * 4. REGISTER STYLES
 **************************************************************************/
.register-section {
  padding: 60px 0 80px;
  background: var(--background-color);
}
.register-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.rules-col,
.form-col {
  flex: 1;
  min-width: 280px;
}
/* Cartão de regras */
.rules-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.rules-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-color);
  padding-left: 16px;
}
.rule-list {
  list-style: none;
  padding: 0;
}
.rule-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--default-color);
  font-size: 0.92rem;
  line-height: 1.4;
}
.rule-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.rule-list li strong {
  color: var(--accent-color);
}
.rule-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Cartão de formulário (igual ao anterior mas sem perks, pois as regras já estão à esquerda) */
.auth-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 32px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.auth-logo {
  text-align: center;
  margin-bottom: 20px;
}
.auth-logo img {
  height: 45px;
}
.auth-logo h2 {
  font-size: 1rem;
  color: var(--default-color);
  margin-top: 8px;
  opacity: 0.7;
}
.auth-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-color);
  padding-left: 16px;
}

.auth-title {
  text-align: center;
  margin-bottom: 24px;
}
.auth-title h1 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.form-label {
  color: var(--default-color);
  font-size: 0.85rem;
  margin-bottom: 5px;
  font-weight: 500;
}
.form-control,
.form-select {
  background: var(--background-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
}
.form-control:focus,
.form-select:focus {
  background: var(--background-color);
  color: #ffffff !important;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(39, 154, 228, 0.15);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1;
}

.form-control:focus::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.btn-auth {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  transition: 0.3s;
}
.btn-auth:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
}
.auth-links {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 18px;
}
.auth-links a {
  color: var(--accent-color);
}
.section-divider {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  opacity: 0.8;
  margin: 18px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* responsivo */
@media (max-width: 768px) {
  .register-grid {
    flex-direction: column;
  }
  .rules-card {
    margin-bottom: 0;
  }
  .auth-card {
    padding: 24px;
  }
}

/**************************************************************************
 * 5. PILOTS PAGE STYLES
 **************************************************************************/
.pilots-section {
  padding: 60px 0 80px;
  background: var(--background-color);
}

.pilots-section .container-xxl {
  max-width: 1500px; /* largura exata  */
  padding-left: 0; /* remove padding lateral extra */
  padding-right: 0;
}

.table-wrapper {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
}
.pilots-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.pilots-table th,
.pilots-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pilots-table th {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.pilots-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.table-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  padding: 0;
  margin-top: 10px;

  background: transparent;
  border: none;
}

.table-footer a,
.table-footer span {
  margin: 4px 0;
}

.btn-auth {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
}
.btn-auth:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: #fff;
}

/* DESKTOP (>= 1400px) */
.pilots-section .container-xxl {
  max-width: 1500px;
  padding-left: 0;
  padding-right: 0;
}

/* TABLET (<= 1200px) */
@media (max-width: 1200px) {
  .pilots-section .container-xxl {
    max-width: 1100px;
  }

  .table-wrapper {
    padding: 16px;
  }

  .pilots-table th,
  .pilots-table td {
    padding: 10px 8px;
  }
}

/* TABLET PEQUENO (<= 992px) */
@media (max-width: 992px) {
  .pilots-section .container-xxl {
    max-width: 900px;
  }

  .table-wrapper {
    padding: 14px;
  }

  .pilots-table {
    font-size: 0.85rem;
  }
}

/* MOBILE (<= 768px) */
@media (max-width: 768px) {
  .pilots-section {
    padding: 40px 0 60px;
  }

  .pilots-section .container-xxl {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .table-wrapper {
    padding: 12px;
    border-radius: 12px;
  }

  .pilots-table th,
  .pilots-table td {
    padding: 8px 6px;
  }

  .pilots-table {
    font-size: 0.8rem;
  }
}

/* MOBILE PEQUENO (<= 480px) */
@media (max-width: 480px) {
  .table-wrapper {
    padding: 10px;
  }

  .pilots-table th,
  .pilots-table td {
    padding: 6px 4px;
  }

  .pilots-table {
    font-size: 0.75rem;
  }
}

/**************************************************************************
 * 6. Inline Stats Counter Section 
 **************************************************************************/
/* FONT SIZES AJUSTADAS */
.stats-card h5 {
  font-size: 0.95rem;
}

.stats-card .stat-number {
  font-size: 1.6rem;
}

.stats-card .desc {
  font-size: 0.7rem;
}

.stats-card .unit {
  font-size: 0.75rem;
}

/* CARD BASE */
.stats-card {
  background: linear-gradient(145deg, var(--surface-color), #0e1628);
  border-radius: 1rem;
  padding: 2rem 1.4rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.45),
    inset 0 0 12px rgba(255, 255, 255, 0.03);
  transition: all 0.35s ease;
  height: 100%;
}

.stats-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.6),
    inset 0 0 18px rgba(39, 154, 228, 0.15);
}

/* ICON */
.stats-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(39, 154, 228, 0.25),
    rgba(39, 154, 228, 0.05)
  );
  box-shadow: 0 0 12px rgba(39, 154, 228, 0.25);
  color: var(--accent-color);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.stats-card:hover .icon-wrap {
  background: linear-gradient(135deg, var(--accent-color), #3eb7ff);
  color: var(--contrast-color);
  box-shadow: 0 0 18px rgba(39, 154, 228, 0.45);
}

/* TITULO */
.stats-card h5 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin-bottom: 6px;
  font-weight: 600;
}

/* NUMERO */
.stats-card .stat-number {
  font-weight: 700;
  color: var(--heading-color);
  display: block;
  line-height: 1;
}

/* DESCRIÇÃO */
.stats-card .desc {
  margin-top: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}


/**************************************************************************
 * 7. Registered Users Steps 
 **************************************************************************/

        .next-steps {
            margin: 1.5rem 0;
        }

        .step-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 0.75rem;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: #2b2e4a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
        }

        .step-content strong {
            display: block;
            margin-bottom: 0.25rem;
            color: #2b2e4a;
        }

        .step-content p {
            margin: 0;
            font-size: 0.9rem;
            color: #6c757d;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            padding: 0.6rem 1.2rem;
            border: 2px solid #2b2e4a;
            border-radius: 8px;
            color: #2b2e4a;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: #2b2e4a;
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .btn-outline {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }
        }

/**************************************************************************
 * 8. Pending Registered Users Steps 
 **************************************************************************/
        .status-icon {
            font-size: 5rem;
            color: #ffc107;
            margin-bottom: 1rem;
        }

        .status-timeline {
            margin: 1.5rem 0;
        }

        .timeline-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .timeline-item:not(:last-child)::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 40px;
            bottom: -20px;
            width: 2px;
            background: #dee2e6;
        }

        .timeline-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border: 2px solid #dee2e6;
            color: #6c757d;
            z-index: 1;
            background: white;
        }

        .timeline-item.completed .timeline-icon {
            background: #28a745;
            border-color: #28a745;
            color: white;
        }

        .timeline-item.active .timeline-icon {
            background: #ffc107;
            border-color: #ffc107;
            color: #2b2e4a;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
            }
        }

        .timeline-content {
            flex: 1;
            padding-bottom: 0.5rem;
        }

        .timeline-content strong {
            display: block;
            margin-bottom: 0.25rem;
            color: #2b2e4a;
        }

        .timeline-content p {
            margin: 0;
            font-size: 0.85rem;
            color: #6c757d;
        }

        .alert-info-box,
        .alert-warning-box {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .alert-info-box {
            background: #e7f1ff;
            border-left: 4px solid #0d6efd;
        }

        .alert-info-box i {
            font-size: 1.5rem;
            color: #0d6efd;
        }

        .alert-warning-box {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
        }

        .alert-warning-box i {
            font-size: 1.5rem;
            color: #ffc107;
        }

        .alert-info-box p,
        .alert-warning-box p {
            margin: 0;
            font-size: 0.85rem;
            color: #6c757d;
        }

        .alert-info-box strong,
        .alert-warning-box strong {
            display: block;
            margin-bottom: 0.25rem;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            padding: 0.6rem 1.2rem;
            border: 2px solid #2b2e4a;
            border-radius: 8px;
            color: #2b2e4a;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: #2b2e4a;
            color: white;
            transform: translateY(-2px);
        }

        .btn-outline-primary {
            display: inline-flex;
            align-items: center;
            padding: 0.6rem 1.2rem;
            background: #2b2e4a;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: #1a1c2e;
            transform: translateY(-2px);
            color: white;
        }

        @media (max-width: 768px) {

            .btn-outline,
            .btn-outline-primary {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }
        }

 /*************************************************************************
 *  9. Email Verification     
 **************************************************************************/
        /* Estilos adicionais específicos para esta página */
        .alert {
            background: var(--surface-color);
            border-radius: 10px;
            padding: 0.75rem 1rem;
            margin-bottom: 1.5rem;
        }

        .alert i {
            font-size: 1.1rem;
        }

        .d-grid {
            display: grid;
        }

        .gap-2 {
            gap: 0.5rem;
        }

        .mt-4 {
            margin-top: 1.5rem;
        }

        .mt-1 {
            margin-top: 0.25rem;
        }

        .me-1 {
            margin-right: 0.25rem;
        }

        .me-2 {
            margin-right: 0.5rem;
        }

        .mb-3 {
            margin-bottom: 1rem;
        }

  





/**************************************************************************
 * COUNTER STYLES
 **************************************************************************/
@media (min-width: 992px) {
  .border-lg-end {
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
  }
}
