﻿.logo-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 1rem;
    background: linear-gradient(-10deg, rgb(40,80,160,0.8), rgb(60,180,200,.2),transparent);
    border-top-left-radius: 100%;
    height: 50rem;
    padding-top: 35rem;
    box-shadow: -.2rem -.2rem 10rem rgb(40,140,180,.3);
}

    .logo-bottom img {
        width: 120px;
        filter: brightness(12) contrast(2);
    }

/*--SBPL login page style--*/
.layout-auth * {
    transition: 100ms ease-in-out;
}

.layout-auth {
    display: grid;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(-15deg, rgb(40,100,200),rgb(40,180,220));
    position: fixed;
    padding: 0;
    margin: 0;
    z-index: 0;
}

    .layout-auth::before {
        content: '';
        display: flex;
        width: 100vw;
        height: 100vh;
        background: linear-gradient( -30deg, rgb(40, 180, 220, .5),rgb(40,180,220,.4), rgb(20,140,200,.4));
        position: fixed;
        padding: 0;
        margin: 0;
        border-top-left-radius: 100%;
        border-top: .15rem solid rgb(40,180,200,.2);
        box-shadow: -.1rem -.1rem 5rem rgb(40,100,180,.2);
        pointer-events: none;
        inset: 0;
    }

.card-auth {
    place-self: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 300px;
    height: 400px;
    background: linear-gradient(-15deg, rgb(251,251,251,.6),rgb(255,255,255));
    border: 1px solid rgb(175,175,175,.1);
    border-radius: 1rem;
    box-shadow: 0 0 3rem rgb(21,21,21,.4);
    align-items: center;
    padding: 1rem;
    z-index: 1;
}

.card-logo img {
    filter: brightness(1) contrast(1.1);
    position: absolute;
}

.card-logo {
    position: relative;
    height: 10rem;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.card-auth form {
    width: 100%;
    margin: 1rem;
    padding: 1rem;
}

.card-auth .form-group {
    margin: 1rem;
}

.auth-title {
    display: block;
    border-bottom: .1rem solid rgb(200,200,200,.4);
    padding: 1rem;
    margin: 0 1rem;
    margin-bottom: 1rem;
}

    .auth-title * {
        font-size: 2rem;
        color: rgb(150,150,150);
    }
