body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, #0c300c, #44a937, #0e7e39);
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Glass Card */
    .login-wrapper {
        width: 100%;
        max-width: 1050px;
        display: flex;
        gap: 40px;
        align-items: center;
        padding: 30px;
    }
    a {
        color:#fff;
        margin-top:18px;
        float: right;
    }
    .login-card {
        background: rgba(255, 255, 255, 0.15);
        padding: 40px;
        border-radius: 18px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(14px);
        color: #fff;
        width: 420px;
        transition: 0.4s ease;
    }

    .login-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 35px 65px rgba(0, 0, 0, 0.35);
    }

    .brand-box {
        color: #fff;
        max-width: 500px;
    }

    .brand-box h1 {
        margin: 0;
        font-weight: 600;
        font-size: 34px;
    }

    .brand-box p {
        opacity: 0.9;
        margin-top: 10px;
    }

    /* Logo row */
    .top-row {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .logo {
        height: 150px;
    }

    input {
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        border: none;
        outline: none;
        margin-top: 10px;
        font-size: 14px;
    }

    .input-wrap {
        margin-top: 18px;
    }

    /* Button */
    button {
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        border: none;
        margin-top: 25px;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        background: linear-gradient(135deg, #00c6ff, #0072ff);
        color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        transition: 0.3s ease;
    }

    button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
    }

    .small-text {
        text-align: center;
        opacity: 0.8;
        margin-top: 12px;
        font-size: 13px;
    }
    .text-red-600{
        color:#ff0000;
    }
    /* Footer */
    .footer {
        position: fixed;
        bottom: 12px;
        left: 0;
        right: 0;
        text-align: center;
        color: white;
        opacity: 0.85;
        font-size: 12px;
    }

    /* Mobile */
    @media(max-width:960px) {
        .login-wrapper {
            flex-direction: column;
            max-width: 500px;
        }
    }