:root {
  --brand: #0d6efd;
  --bs-navbar-padding-y: 1rem;
}

body { background: #f7f9fc; }
.card { border: 0; box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06); }
.badge-status { text-transform: uppercase; letter-spacing: .04em; }
.job-meta { color: #64748b; font-size: .95rem; }

.peso-hero {
  background: radial-gradient(1200px 600px at 20% 10%, rgba(13,110,253,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 30%, rgba(25,135,84,.12), transparent 55%),
              linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.35));
  border: 1px solid rgba(13,110,253,.10);
  border-radius: 18px;
}

.navbar-brand { letter-spacing: .2px; }

.about-hero {
  background: #fff;
  border-radius: 18px;
}

.about-title {
  letter-spacing: .08em;
}

.about-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: #198754;
  margin: 10px auto 0;
  border-radius: 999px;
}

.about-circle {
  width: min(340px, 90%);
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  overflow: hidden;
  background: #e9ecef;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

.about-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-carousel .carousel-inner img {
  height: 320px;
  object-fit: cover;
}

@media (max-width: 576px) {
  .home-carousel .carousel-inner img {
    height: 220px;
  }
}

/* Override Bootstrap outline-success to custom blue */
.btn-outline-success {
  --bs-btn-color: #0086ff;
  --bs-btn-border-color: #0086ff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0086ff;
  --bs-btn-hover-border-color: #0086ff;
  --bs-btn-focus-shadow-rgb: 0, 134, 255;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0086ff;
  --bs-btn-active-border-color: #0086ff;
}

/* Auth pages (modern animated login style) */
.auth-shell {
  position: relative;
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px 0;
}

.auth-shell::before,
.auth-shell::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(13,110,253,.35), transparent 40%),
    radial-gradient(circle at 75% 20%, rgba(25,135,84,.28), transparent 42%),
    radial-gradient(circle at 60% 85%, rgba(111,66,193,.25), transparent 44%),
    radial-gradient(circle at 25% 80%, rgba(220,53,69,.18), transparent 48%);
  filter: blur(20px);
  transform: translate3d(0,0,0);
  animation: authFloat 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.auth-shell::after {
  animation-duration: 14s;
  opacity: .65;
  filter: blur(28px);
}

@keyframes authFloat {
  from { transform: translate(-2%, -1%) scale(1.02); }
  to   { transform: translate(2%, 1%) scale(1.06); }
}

.auth-card {
  position: relative;
  width: min(520px, 92vw);
  border-radius: 18px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(10px);
}

.auth-card .auth-logo {
  width: min(180px, 55%);
}

.auth-subtitle {
  color: #64748b;
}

.auth-form .form-control {
  border-radius: 12px;
  padding: .85rem .9rem;
  border-color: rgba(15,23,42,.12);
}

.auth-form .form-control:focus {
  box-shadow: 0 0 0 .25rem rgba(13,110,253,.15);
}

.auth-primary-btn {
  border-radius: 12px;
  padding: .85rem 1rem;
  font-weight: 600;
}

