﻿body {
    margin: 0;
}

header {
    background-color: #000;
}

.debug {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: red;
    border-radius: 20px;
    color: #fff;
    padding: 30px;
    font-family: "BoschSans-Bold", sans-serif !important;
}

html {
    height: 100%;
    overflow-x: hidden;
}

header {
    width: 100%;
    height: 105px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

    header.main_header {
        background-color: #000;
    }

.logoContainer_main {
    width: 70%;
    height: auto;
    margin: 0 auto;
    background-color: #000;
}


.logo {
    display: block;
    width: 150px;
    height: 100px;
    background-image: url("../../App_Images/Icone/BSH_Logo_White_sRGB.svg");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
}

.containerMainLogin {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

    .containerMainLogin .box_login {
        width: 69%;
        height: auto;
        margin: 10% auto;
    }

.title_main {
    font-weight: bolder;
    font-family: "BoschSans-Bold", sans-serif !important;
}

#pnlLogin {
    width: 70%;
    margin: 0 auto;
    margin-top: 200px;
}

.paragraf_text, .errorMsg {
    font-size: 20px;
    font-weight: 500;
    font-family: "BoschSans-Regular", sans-serif !important;
    margin: 15px 0;
}

.errorMsg {
    color: red;
}

input {
    width: 15%;
    background: none;
    border: none;
    border-bottom: 1px solid #000;
    color: #000000;
    height: 40px;
    background-color: #e0e2e5;
    line-height: 28px;
    padding: 0px 11px;
    /*font-family: $fontRegular;*/
    margin-bottom: 10px;
    margin-top: 10px;
}

.loginSubmit {
    border-radius: 30px;
    width: 90px;
    background-color: #202020;
    display: block;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    margin-top: 30px;
    font-family: "BoschSans-Regular", sans-serif !important;
    transition: all ease-in-out 0.2s;
}

    .loginSubmit:hover,
    .loginSubmit:focus,
    .loginSubmit.active {
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: #202020d1;
    }

@media screen and (max-width: 768px) {
    .catalog {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #pnlLogin {
        width: 90% !important;
        margin: 0 auto;
        margin-top: 200px;
    }

    .paragraf_text {
        font-size: 18px;
    }

    input {
        width: 90%;
    }
}
