/* ============================
   RESET
============================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ============================
   BODY
============================ */

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;

  background: linear-gradient(
    135deg,
    #003b73,
    #0056a6,
    #1976b9,
    #2b7fc3
  );

  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, 32, 64, .18);

  z-index: 0;
}


/* ============================
   CARD
============================ */

.card {
  width: min(95%, 620px);

  padding: 3.5rem;

  border: none;
  border-radius: 28px;

  background: rgba(255, 255, 255, .96);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  text-align: center;

  box-shadow:
    0 30px 70px rgba(0, 35, 75, .25),
    inset 0 1px 0 rgba(255, 255, 255, .8);

  overflow: hidden;

  opacity: 0;
  transform: translateY(40px);

  position: relative;
}

.card::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, .45),
    transparent
  );

  transform: translateX(-120%);

  animation: shine 7s infinite;

  pointer-events: none;
}


/* ============================
   ICONO
============================ */

.status-icon {
  width: 95px;
  height: 95px;

  margin: auto;
  margin-bottom: 25px;

  display: flex;

  justify-content: center;
  align-items: center;

  border-radius: 50%;

  background: #eaf4fc;

  color: #0056a6;

  font-size: 3.2rem;

  box-shadow:
    0 10px 25px rgba(0, 86, 166, .22);
}


/* ============================
   PILL
============================ */

.status-pill {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: .5rem;

  padding: .55rem 1.2rem;

  border-radius: 999px;

  background: #e8f5ec;

  color: #168447;

  font-weight: 700;

  margin-bottom: 22px;
}


/* ============================
   TITULOS
============================ */

h1 {
  color: #003b73;

  font-size: 2.15rem;

  font-weight: 800;

  margin-bottom: 20px;
}

.lead {
  color: #31577d;

  font-size: 1.1rem;

  line-height: 1.7;

  font-weight: 500;

  margin-bottom: 10px;
}

.description {
  color: #5a7189;

  line-height: 1.8;

  margin-bottom: 2rem;
}


/* ============================
   DIVISOR
============================ */

hr {
  width: 70px;
  height: 4px;

  margin: 1.8rem auto;

  background: #0056a6;

  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,
    #0066b3,
    #003f7f
  );
}

.btn-form:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 30px rgba(0, 86, 166, .35);
}


/* ============================
   DASHBOARD
============================ */

.btn-dashboard {
  background: linear-gradient(
    135deg,
    #2b7fc3,
    #0056a6
  );
}

.btn-dashboard:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 30px rgba(0, 86, 166, .35);
}


/* ============================
   FOOTER
============================ */

footer {
  padding: 20px;

  color: rgba(255, 255, 255, .85);

  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%);
  }
}