body {
        background: white;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        font-family: 'Poppins', sans-serif;
        background-size: 300% 300%;
        animation: bgAnim 9s ease infinite;
    }


/*linear-gradient(120deg, #0b421a, #0e7a37, #198754);*/
   @keyframes bgAnim {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .login-box {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border-radius: 18px;
        padding: 40px;
        width: 100%;
        max-width: 420px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        animation: fadeUp .8s ease;
    }

    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .login-title {
        font-size: 24px;
        font-weight: 700;
        color: #066d3d;
    }

    .form-control {
        height: 50px;
    }

    .form-control::placeholder {
        color: #828282;
    }

    .form-control:focus {
        box-shadow: none;
        border: 1px solid #fff;
    }

    .btn-login {
        color: #fff;
        font-weight: bold;
        width: 100%;
        height: 50px;
        border-radius: 10px;
        transition: .3s;
    }

    .btn-login:hover {
        background: #095101;
        color: white;
    }

    .logo-box img {
        width: 75px;
        margin-bottom: 10px;
        animation: bounce 1.4s infinite;
    }
    @keyframes bounce {
      0%,100%{ transform: translateY(0);}
      50%{ transform: translateY(-5px);}
    }

    .forgot-link {
        color: #095101;
        font-size: 14px;
    }