/*****************************/
/** Wartości custom dla widoku: Logowanie za pomocą hasła  **/
/*****************************/

#LoginByPasswordView {
    button {
        background-color: #007bff !important;
        color: #ffffff;
        font-size: 16px;
        border-radius: 4px;
        width: 100%;

        &:focus {
            box-shadow: 0 0 0 .2rem #007bff40;
        }

        &:hover {
            background-color: #007bffcc !important;
        }
    }

    .form-control {
        color: #000000;
        background-color: transparent;
        font-size: 16px;
        border-radius: 4px;

        &:focus {
            box-shadow: 0 0 0 .2rem transparent40;
        }

        &:hover {
            background-color: transparentcc;
        }
    }

    #header-text {
        color: #6a6a6a;
        font-size: 12px;
    }
}

