* {
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* animated background */
.bg-animate {
    height: 100vh;
    background: linear-gradient(-45deg,
        #003366,
        #00509e,
        #0096c7,
        #48cae4);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* login box */
.login-box {
    background: white;
    width: 320px;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* panda */
.panda {
    width: 120px;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* inputs */
input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* button */
button {
    width: 100%;
    padding: 10px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #00509e;
}

/* forgot */
.forgot {
    display: block;
    margin-top: 10px;
    color: #003366;
    font-size: 14px;
    text-decoration: none;
}
