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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #18333E;
}

.info-text {
    font-size: 12px;
    padding-top: 10px;
    line-height: 14px;
    color: #A2A2A2;
}

.page-header {
    z-index: 100;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px;
}
.page-footer {
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    color: #fff;
    box-shadow: inset 0 40px 50px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    padding: 0 30px;
    font-size: 14px;
    z-index: 10;
    padding-top: 10px;
}
.page-footer a {
    text-decoration: none;
    color: #fff;
}
.page-footer a:hover {
    text-decoration:underline;
}

/* ── Background ── */
.lava-wrap {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background: #18333E;
}
.lava-wrap svg {
    position: absolute;
    width: 0;
    height: 0;
  }
.blobs {
    position: absolute;
    inset: -15%;          /* bleed past edges so blobs don't pop in/out */
    width: 120%;
    height: 120%;
    filter: url(#goo) blur(40px);
    will-change: filter;
  }

  .blob {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    /* each blob uses GPU-composited CSS animation — no JS per frame */
  }
  /* ── Blob 1  #25CCB4 ── */
  .blob-1 {
    width: 65vmax;  height: 65vmax;
    top: -15%;      left: 10%;
    background: radial-gradient(circle, rgba(37,204,180,0.85) 0%, rgba(37,204,180,0) 70%);
    animation: drift1 40s ease-in-out infinite alternate,
               breathe 12s ease-in-out infinite alternate;
  }
  @keyframes drift1 {
    0%   { transform: translate(0, 0)       rotate(0deg); }
    25%  { transform: translate(12vw, 8vh)   rotate(40deg); }
    50%  { transform: translate(-5vw, 18vh)  rotate(-20deg); }
    75%  { transform: translate(18vw, -6vh)  rotate(60deg); }
    100% { transform: translate(-8vw, 12vh)  rotate(-30deg); }
  }

  /* ── Blob 2  #18A195 ── */
  .blob-2 {
    width: 70vmax;  height: 70vmax;
    top: 5%;        left: 55%;
    background: radial-gradient(circle, rgba(24,161,149,0.8) 0%, rgba(24,161,149,0) 70%);
    animation: drift2 46s ease-in-out infinite alternate,
               breathe 14s ease-in-out infinite alternate;
  }
  @keyframes drift2 {
    0%   { transform: translate(0, 0)        rotate(0deg); }
    25%  { transform: translate(-15vw, -10vh) rotate(-50deg); }
    50%  { transform: translate(10vw, -20vh)  rotate(30deg); }
    75%  { transform: translate(-20vw, 5vh)   rotate(-70deg); }
    100% { transform: translate(8vw, -15vh)   rotate(20deg); }
  }

  /* ── Blob 3  #FE9F05 ── */
  .blob-3 {
    width: 60vmax;  height: 60vmax;
    top: 25%;       left: 65%;
    background: radial-gradient(circle, rgba(254,159,5,0.75) 0%, rgba(254,159,5,0) 70%);
    animation: drift3 38s ease-in-out infinite alternate,
               breathe 16s ease-in-out infinite alternate;
  }
  @keyframes drift3 {
    0%   { transform: translate(0, 0)        rotate(0deg); }
    25%  { transform: translate(20vw, -12vh)  rotate(45deg); }
    50%  { transform: translate(-10vw, -25vh) rotate(-35deg); }
    75%  { transform: translate(15vw, 10vh)   rotate(80deg); }
    100% { transform: translate(-12vw, -8vh)  rotate(-50deg); }
  }

  /* ── Blob 4  #FFD99B ── */
  .blob-4 {
    width: 58vmax;  height: 58vmax;
    top: -5%;       left: 40%;
    background: radial-gradient(circle, rgba(255,217,155,0.7) 0%, rgba(255,217,155,0) 70%);
    animation: drift4 48s ease-in-out infinite alternate,
               breathe 13s ease-in-out infinite alternate;
  }
  @keyframes drift4 {
    0%   { transform: translate(0, 0)         rotate(0deg); }
    25%  { transform: translate(-18vw, 10vh)  rotate(-60deg); }
    50%  { transform: translate(8vw, -8vh)    rotate(25deg); }
    75%  { transform: translate(-12vw, 15vh)  rotate(-40deg); }
    100% { transform: translate(15vw, -5vh)   rotate(55deg); }
  }

  /* ── Blob 5  #25CCB4 (second teal, different path) ── */
  .blob-5 {
    width: 62vmax;  height: 62vmax;
    top: 15%;       left: -5%;
    background: radial-gradient(circle, rgba(37,204,180,0.65) 0%, rgba(37,204,180,0) 70%);
    animation: drift5 42s ease-in-out infinite alternate,
               breathe 15s ease-in-out infinite alternate;
  }
  @keyframes drift5 {
    0%   { transform: translate(0, 0)        rotate(0deg); }
    25%  { transform: translate(25vw, 5vh)    rotate(35deg); }
    50%  { transform: translate(15vw, -18vh)  rotate(-45deg); }
    75%  { transform: translate(-5vw, 12vh)   rotate(70deg); }
    100% { transform: translate(20vw, -10vh)  rotate(-25deg); }
  }

  /* ── Blob 6  #FE9F05 (second orange, different path) ── */
  .blob-6 {
    width: 55vmax;  height: 55vmax;
    top: 40%;       left: 75%;
    background: radial-gradient(circle, rgba(254,159,5,0.6) 0%, rgba(254,159,5,0) 70%);
    animation: drift6 50s ease-in-out infinite alternate,
               breathe 10s ease-in-out infinite alternate;
  }
  @keyframes drift6 {
    0%   { transform: translate(0, 0)        rotate(0deg); }
    25%  { transform: translate(-22vw, -8vh)  rotate(-55deg); }
    50%  { transform: translate(-10vw, -22vh) rotate(40deg); }
    75%  { transform: translate(8vw, -12vh)   rotate(-30deg); }
    100% { transform: translate(-18vw, -18vh) rotate(65deg); }
  }

  /* ── Blob 7  #18A195 (second deep teal) ── */
  .blob-7 {
    width: 68vmax;  height: 68vmax;
    top: 30%;       left: 20%;
    background: radial-gradient(circle, rgba(24,161,149,0.55) 0%, rgba(24,161,149,0) 70%);
    animation: drift7 54s ease-in-out infinite alternate,
               breathe 18s ease-in-out infinite alternate;
  }
  @keyframes drift7 {
    0%   { transform: translate(0, 0)         rotate(0deg); }
    25%  { transform: translate(-8vw, -10vh)  rotate(50deg); }
    50%  { transform: translate(12vw, 8vh)    rotate(-35deg); }
    75%  { transform: translate(-15vw, -12vh) rotate(75deg); }
    100% { transform: translate(5vw, 5vh)     rotate(-20deg); }
  }

  /* shared breathing scale */
  @keyframes breathe {
    0%   { scale: 1; }
    100% { scale: 1.15; }
  }

/* ── Login card ── */
.login-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 44px 40px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    -webkit-animation: cardIn 0.65s cubic-bezier(.22, 1, .36, 1) both;
    animation: cardIn 0.65s cubic-bezier(.22, 1, .36, 1) both;
}

@-webkit-keyframes cardIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
    }
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.login-title {
    text-align: center;
    font-weight: 700;
    color: #2b2d42;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.form-control-login {
    display: block;
    width: 100%;
    border: 1.5px solid #e0e4eb;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 0.92rem;
    color: #444;
    background: #fff;
    outline: none;
    -webkit-transition: border-color 0.2s, box-shadow 0.2s;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 14px;
}

.form-control-login::placeholder {
    color: #aab0bb;
}

.form-control-login:focus {
    border-color: #1a9e8a;
    box-shadow: 0 0 0 3px rgba(26, 158, 138, 0.12);
}

.btn-login {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 15px;
    background: #1a9e8a;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: background 0.2s, -webkit-transform 0.15s, box-shadow 0.2s;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 6px;
}

.btn-login:hover {
    background: #148a78;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 158, 138, 0.32);
}

.btn-login:active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.forgot-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
}

.forgot-wrap a {
    color: #1a9e8a;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.forgot-wrap a:hover {
    color: #148a78;
    text-decoration: underline;
}

.forgot-wrap i {
    color: #1a9e8a;
    font-size: 0.85rem;
}

.toggle-password {
    float: right;
    margin-right: 10px;
    cursor: pointer;
}

.btn-help {
    color: #1a9e8a;
    background-color: #fff;
    border-radius: 20px;
    padding: 7px 20px;
}
.btn-help:hover {
    color: #148a78;
}