body {

    background: #f4f6f9;

    color: #172033;

}


.bg-navy {

    background: #0b1f3a;

}


.login-body {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
    linear-gradient(
        135deg,
        #06152b,
        #123c68
    );

}


.login-card {

    width: min(420px, 92%);

    background: #ffffff;

    padding: 32px;

    border-radius: 16px;

    box-shadow:
    0 15px 45px
    rgba(0,0,0,.25);

}


.logo-box {

    font-weight: 800;

    font-size: 28px;

    letter-spacing: 3px;

    color: #0b1f3a;

    margin-bottom: 8px;

}


.folder-card {

    border: 0;

    border-radius: 14px;

    transition: .2s;

}


.folder-card:hover {

    transform:
    translateY(-3px);

    box-shadow:
    0 10px 25px
    rgba(0,0,0,.10)
    !important;

}


.list-group-item {

    border-left: 0;

    border-right: 0;

}


a {

    text-decoration: none;

}