﻿#page {
    height: 100vh;
    width: 100vw;
    background-color: #f3f8fb;
    overflow: hidden;
}

#content {
    margin: 1rem;
    overflow: hidden;
}

#textLogin{
    font-size: 0.85rem;
}


input{
    height: 2rem;
    margin-bottom: 0.5rem;
}

    #remember {
        display: inline-flex;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }

.ui-hide-label{
    display: grid;
}



#lblDatabases, #lblDivisions, #lblAdditionalLoginMethod {
    display: inline-grid;
    margin-bottom: 0.5rem;
}


.dlgField {
    font-size: 0.75rem;
    margin: 0;
    font-weight: bold;
    margin-top: 0.5rem;
}

select {
    position: relative;
    display: inline-block;
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid #d1dae0;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    background-image: url(../assets/caret-ico.svg);
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 0.64rem;

    -webkit-appearance: none;
    appearance: none;

    text-indent: 0.5rem;
    height: 2rem;
}

    select:focus {
        outline: none;
        border-radius: 0.5rem;
        border: 1px solid #d1dae0;
    }

.cmdLogin {
    height: 3rem;
    background-color: #009EE0;
    font-weight: bolder;
    color: white;
    font-size: 1rem;
    border: none;
}