.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(/assets/image/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.login-box {
    position: relative;
    width: 400px;
    height: 400px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
    border: 2px solid #fff;
}

.login-image {
    width: 300px;
    overflow: hidden;
    margin: auto;
}

.login-image img {
    width: 100%;
    object-fit: cover;
}

.login-title {
    text-align: center;
    margin-top: 10px;
    color: #fff;
}

.input-box {
    width: 310px;
    margin: 20px 0;
    border-bottom: 2px solid #fff;
    color: #fff;
}

.input-box input {
    width: 100%;
    height: 40px;
    background: transparent;
    padding: 10px;
    border: none;
    outline: none;
    color: #fff;
}

.input-box input::placeholder {
    color: #fff;
    font-size: 1em;
}

.login-button button {
    width: 100%;
    height: 40px;
    border: none;
    background-color: #fff;
    color: #000;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.login-footer {
    font-size: .8rem;
    text-align: center;
    margin-top: 10px;
    color: #fff;
}

/* Media Queries for responsiveness */

/* Tablet view */
@media (max-width: 1024px) {
    .login-box {
        width: 40%;
        height: auto;
        padding: 20px;
    }

    .login-image {
        width: 250px;
    }

    .input-box {
        width: 280px;
    }

    .login-title {
        font-size: 1rem;
    }

    .input-box input {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.9rem;
    }

    .login-footer {
        font-size: 0.7rem;
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .login-box {
        width: 60%;
        height: auto;
        padding: 20px;
    }

    .login-image {
        width: 200px;
    }

    .input-box {
        width: 260px;
    }

    .login-title {
        font-size: 1.1rem;
    }

    .input-box input {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.9rem;
    }

    .login-footer {
        font-size: 0.6rem;
    }
}

/* Mobile view (medium screens) */
@media (max-width: 480px) {
    .login-box {
        width: 70%;
        height: auto;
    }

    .login-image {
        width: 150px;
    }

    .input-box {
        width: 100%;
    }

    .login-title {
        font-size: .8rem;
    }

    .input-box input {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.9rem;
    }

    .login-footer {
        font-size: 0.5rem;
    }
}

/* Mobile view (smaller screens) */
@media (max-width: 320px) {
    .login-box {
        width: 70%;
        height: auto;
    }

    .login-image {
        width: 150px;
    }

    .input-box {
        width: 100%;
    }

    .login-title {
        font-size: .5rem;
    }

    .input-box input {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.9rem;
    }

    .login-footer {
        font-size: 0.5rem;
    }
}
