body {
    margin: 0;
    padding: 0;
    background: url("/images/login-bg.png") no-repeat center center fixed;
    background-size: cover;
    font-family: "Segoe UI", sans-serif;
}
.login-box {
    width: 400px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.login-box img {
    display: block;
    margin: 0 auto 20px;
}
.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ccc;
    border-radius: 25px;
    outline: none;
}
.login-box button {
    width: 100%;
    padding: 12px;
    background: #1ca1d8;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
.powered-by {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
}
.powered-by img {
    width: 70px;
}



.back-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: #4b3621;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    border: none;
    text-decoration: underline;
}



@media (max-width: 768px) {
    .header-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .input-field {
        width: 100%;
        margin-top: 5px;
    }

    .company-info {
        text-align: left;
        margin-top: 10px;
    }

    .invoice-bar {
        justify-content: flex-start;
    }

    .date {
        text-align: left;
    }

    .details-table td {
        display: block;
        width: 100%;
        border-bottom: none;
        margin-bottom: 10px;
    }

    .bank-box {
        max-width: 100% !important;
        margin-bottom: 60px;
    }

    .total-payable input.input-field {
        width: 70%;
        display: inline-block;
        margin-top: 5px;
    }
}
