/* 
    Created on : 11.09.2018, 10:41:47
    Author     : Fuerstenberg
*/

@font-face 
{ 
font-family: "Ropa Sans";  
src: url('../fonts/RopaSans-Regular.eot'),
     url('../fonts/RopaSans-Regular.eot#') format('embedded-opentype'),
     url("../fonts/RopaSans-Regular.ttf") format("TrueType"),
     url('../fonts/RopaSans-Regular.woff') format('woff');
}  

* {
    box-sizing: border-box;
    font-family: "Ropa Sans";
}

body {
}

.basisLogin__mainBox {
    max-width: 700px;
    padding: 16px;
    margin: auto;
    border-radius: 4px;
    margin-top: env(safe-area-inset-top);
}

.basisLogin__mainBox.basisLogin__mobile {
    width: auto;
}

.basisLogin__form {
    display: flex;
    flex-direction: column;
}

.basisLogin__form > * {
    margin-bottom: 16px;
}

.basisLogin__form > *:last-child {
    margin-bottom: 0;
}

.basisLogin__input--username, .basisLogin__input--password, .basisLogin__input--design, .basisLogin__input--company, .basisLogin__input--mail {
    height: 48px;
    background: #fff;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    font-size: 24px;
    padding-left: 48px;
    width: 100%;
    color: #777;
}

.basisLogin__input--username {
    background-image: url("../images/user.png");
    background-repeat: no-repeat;
    background-position: left 10px center !important;
}

.basisLogin__input--password {
    background-image: url("../images/lock.png");
    background-repeat: no-repeat;
    background-position: left 10px center !important;
}

.basisLogin__input--design {
    background-image: url("../images/window_explorer.png");
    background-repeat: no-repeat;
    background-position: left 10px center !important;
}

.basisLogin__input--company {
    background-image: url("../images/office_building2.png");
    background-repeat: no-repeat;
    background-position: left 10px center !important;
    
    padding-left: 44px;
}

.basisLogin__input--mail {
    background-image: url("../images/icons32/letter.png");
    background-repeat: no-repeat;
    background-position: left 10px top !important;
}

.basisLogin__input--username.error, .basisLogin__input--password.error {
    border-color: #f00;
}

.basisLogin__input--username.error::placeholder, .basisLogin__input--password.error::placeholder {
    color: #f00;
}

.basisLogin__input--username.error:focus, .basisLogin__input--password.error:focus {
    outline: none;
}

.basisLogin__input--design:disabled {
    border-color: #dbdbdb;
    color: #dbdbdb;
    background-image: url("../images/window_explorer_bright.png");
    background-repeat: no-repeat;
    background-position: left 10px center !important;
}

.basisLogin__companyDescription {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.basisLogin__companyDescription.basisLogin__mobile {
    height: auto;
    flex-direction: column;
}

.basisLogin__companyDescription.basisLogin__mobile > .basisLogin__companyName {
    height: auto;
    line-height: initial;
    text-align: center;
}

.basisLogin__companyName {
    width: calc(100% - 136px);
    font-size: 24px;
    vertical-align: top;
    display: inline-block;
    flex-grow: 2;
    margin-left: 16px;
}

.basisLogin__companyLogo {
    max-height: 80px;
    max-width: 80px;
}

.basisLogin__buttonSubmit {
    background-color: #fff;
    border: 1px solid #c8c8c8;
    height: 36px;
    margin-left: calc(100% - 270px);
    font-size: 16px;
    color: #777;
    width: 90px;
}

.basisLogin__buttonSubmit.basisLogin__mobile {
    width: 100%;
}

.basisLogin__infoBox--top {
    margin: auto;
    margin-bottom: 16px;
    width: auto;
    max-width: 700px;
    padding: 16px;
    border: 2px solid #f00;
    color: #777;
    background-color: #eee;
}

.basisLogin__passwordButton {
    background-color: transparent;
    border: none;
    height: 36px;
    font-size: 16px;
    color: #DC4405;
    width: 180px;
}
