/* ============================
   RESET
============================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================
   BODY
============================ */

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;

  background: linear-gradient(135deg,
      #9ec1df,
      #8fb8db,
      #79abd5,
      #6ba0cf);

  background-size: 400% 400%;
  animation: gradientMove 18s ease infinite;

  overflow-x: hidden;
}

/* ============================
   LAYOUT
============================ */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================
   OVERLAY
============================ */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .28);
  z-index: 0;
}

/* ============================
   CARD
============================ */

.card {

  width: min(95%, 620px);

  padding: 3.5rem;

  border: none;
  border-radius: 28px;

  background: rgba(255, 255, 255, .92);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  text-align: center;

  box-shadow:
    0 30px 70px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .7);

  overflow: hidden;

  opacity: 0;
  transform: translateY(40px);
}

.card::before {

  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .35),
      transparent);

  transform: translateX(-120%);
  animation: shine 7s infinite;
}

/* ============================
   ICONO
============================ */

.status-icon {

  width: 95px;
  height: 95px;

  margin: auto;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;

  background: #e9f7ef;

  color: #18a957;

  font-size: 3.2rem;

  box-shadow:
    0 10px 25px rgba(24, 169, 87, .25);

  margin-bottom: 25px;
}

/* ============================
   PILL
============================ */

.status-pill {
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: .5rem;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  background: #eef9f2;
  color: #17934c;
  font-weight: 700;
  margin-bottom: 22px;
}

/* ============================
   TITULOS
============================ */

h1 {

  color: #163c77;

  font-size: 2.15rem;

  font-weight: 800;

  margin-bottom: 20px;
}

.lead {

  color: #3b5477;

  font-size: 1.1rem;

  line-height: 1.7;

  font-weight: 500;

  margin-bottom: 10px;
}

.description {

  color: #5b6f88;

  line-height: 1.8;

  margin-bottom: 2rem;
}

/* ============================
   DIVISOR
============================ */

hr {

  width: 70px;

  height: 4px;

  margin: 1.8rem auto;

  background: #2b67d8;

  border: none;

  border-radius: 100px;
}

/* ============================
   BOTONES
============================ */

.btn-primary {
  border: none;
  border-radius: 14px;
  padding: .9rem 2rem;
  font-weight: 700;
  transition: .25s;
}

/* ============================
   FORMULARIO
============================ */

.btn-form {
  background: linear-gradient(135deg,
      #2463eb,
      #1444b6);
}

.btn-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(36, 99, 235, .35);
}


/* ============================
   DASHBOARD
============================ */

.btn-dashboard {
  background: linear-gradient(135deg,
      #7c3aed,
      #5b21b6);
}

.btn-dashboard:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(124, 58, 237, .35);
}

/* ============================
   FOOTER
============================ */

footer {

  padding: 20px;

  color: rgba(255, 255, 255, .8);

  font-size: .9rem;

  letter-spacing: .4px;
}

/* ============================
   ANIMACIONES
============================ */

@keyframes gradientMove {

  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }

}

@keyframes shine {

  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }

}