body {
    /* background: linear-gradient(to bottom, var(--CI-blue) 90px, #cbcdcd 250px, #b0b3b8 100vh); */
    /* background-repeat: no-repeat; */
    font-family: "Helvetica Neue", Arial, sans-serif;
    /* margin:0px;
    padding: 0px;
    width: auto;
    height: 100%; */
    background-color: #b0b3b8!important;
}

.login-container {
    display: flex;
    justify-content: center
}

.card2{
    min-width: 350px;
    width: 350px;
    background-color: white;
    border-radius: 8px;
    padding: 18px;
    margin:8px;
}

label {
    vertical-align: middle;
    color: var(--CI-grey);
}

.logo-title {
    text-align: center;
    font-size: xx-large;
    margin-bottom: 15px;
    font-family: 'Work Sans';
    font-weight: bold
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

form p {
    display: flex;
    justify-content: space-between;
    margin: 0px;
    align-items: center;
    width: 100%;
}

input:focus {}


.btn-primary {
    width: 100%;
    height: 35px;
    padding: .5rem 1rem;
}

.btn-brand {
    padding: 12px 24px;
    font-size: 9pt;
}


@media only screen and (max-width: 768px) {

    body{
        width: 100%;
    }

    .login-container{
        display: block;
        width: 100%;
    }
    .card2 {
        min-width: 0px;
        width: auto;
    }
}