.login{
    position: fixed;
    background-color: #ededed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1800;
    display: flex;
    justify-content: center;
    align-items: center;
    &__logo{
        img{
            max-height: 150px;
            max-width: 300px;
            // height: 100%;
            // width: auto;
        }
    }
    &__error{
        background-color: $danger_100;
        //border: 1px $danger solid;
        padding: 10px;
        color: $danger;
        font-weight: $font_bold;
        border-radius: 4px;
        margin-bottom: 10px;

    }
    &__container{
        text-align: center;
        background-color: #fefefe;
        padding: 30px;
        min-width: 300px;
    }
    &__title{
        font-size: 15px;
        font-weight: $font_bold;
        margin: 5px 0 2px 0;
        padding: 0;
    }
    &__subtitle{
        font-size: 15px;
        font-weight: $font_normal;
        margin: 0px 0px 10px 0;
    }
    &__input{
        margin-bottom: 10px;
    }
    &__btn{
        margin-top: 10px;
        width: 100%;
    }
}