﻿:root {
    --theme-blue: #256bff;
}

.divLoginFrame {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    border: 1px solid black;
    border-radius: 3px;
}
.divLoginHead {
    background-color: var(--theme-blue);
    color: white;
    width: 100%;
    padding: 5px 0px;
    text-align: center;
    font-size: 26px;
}
.divLoginBodyFrame {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
}
.lblLogin {
    font-family: MuseoSans, Arial;
    font-weight: bold;
    font-style: normal;
    font-size: 1rem;
    color: black;
    text-align: left;
    line-height: 1.5;
    display: flex;
    padding: 0.5rem;
    background: white;
    flex-direction: column;
}
.divLoginTxt {
    font-size: 16px;
    width: 260px;
    padding: 0.5rem;
    outline: none;
    border: 1px solid #cccccc;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: border-color 0.15s linear, background 0.15s linear;
}
    .divLoginTxt:focus {
        border-color: black;
        background-color: #f1f1f163;
        box-shadow: 1px 1px 2px 0px #00000045;
    }
.divLoginSubmit {
    font-size: 1rem;
    cursor: pointer;
    width: 260px;
    border-radius: 3px;
    background-color: #ffb718;
    padding: 10px 10px;
    text-align: center;
    margin-top: 20px;
    transition: background-color 300ms ease-out;
}
.divLoginSubmit:hover{
    background-color: darkorange;
}
.divLoginSubmit.disabled{
    filter:grayscale(1);
    cursor: pointer;
    pointer-events: none;
}

.divForgotFrame{
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

.divErrorTxt {
    display: none;
    width: 90%;
    justify-content: center;
    margin-bottom: 10px;
    color: #c70000;
    font-style: italic;
}
.divErrorTxt.show{
    display: flex;
}

/*#region Mobile*/
@media screen and (max-width: 730px) {
    .divLoginTxt {
        font-size: 15px;
        width: 250px;
    }
}
/*#endregion*/