.home-login{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    left: 250px;
    width: calc(100% - 250px);
    transition: var(--tran-05);
}
.sidebar.close ~ .home-login{
    left: 88px;
    width: calc(100% - 88px);
}
.loginAbox
{
    position: relative;
}
.loginbox2
{
    position: relative;
    width: 380px;
    height: 320px;
    background: none;
    border-radius: 8px;
}
.loginbox2 form
{
    position: absolute;
    inset: 4px;
    background: linear-gradient(to bottom right, #003444, #346a80);
    padding: 50px 40px;
    border-radius: 8px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.loginbox2 form h2
{
    color: white;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
}