@charset "utf-8";

div.page-container-auth {
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    
    background: #ffd60e;
    width:      400px;
    margin:     0 auto;
    padding: 20px 10px;
}

div.page-container-auth > form > div.logo {
    background:url("/assets/icons/truckman_logo3.3.svg") no-repeat center;
    background-size: 320px 200px;
    background-position-y: 10px;
    height: 150px;

}    

@media screen and (max-width:750px){
    div.page-container-auth {
        position: absolute;
        margin-top: 10px;
        left: 10px;
        width: calc(100% - 40px);
        top: 10px;
        height: calc(100% - 10px);

        transform: none;
        -webkit-transform: none;
    }

}


input {
    display: block;
    font-size:18px;
    font-family: "regular";
    padding:5px 10px;
    margin:10px;
    width: calc(100% - 50px);
    text-align: center;
}

input[type=text],
input[type=password] {
    border-radius: 3px;
    background:#f7f7f7;
    border:1px solid #eee;
    color:#222;
    height: 35px;
}


input[type=button] {
    border: none;
    color:#fff;
    height:50px;
    background: #444;
    font-family: "semibold";
    font-size:20px;
    width:calc(100% - 28px);  
}

ul {
    margin: 10px;
}

ul>li {
    font-size:15px;
    margin:5px 5px;
    color: #999;
    float: right;
    list-style: none;
}

div.field-error-cred,
div.field-error {
    display: none;
    font-family: "semibold";
    padding: 5px 10px;
    background: #c83333;
    color: #fff;
    font-size:15px;
    position: relative;
    border-radius: 2px;
    text-align: left;
}

div.field-error {
    margin: -10px 17px 5px 10px;
}
div.field-error-cred {
    text-align: center;
    font-size:18px;
    margin: 5px 17px -10px 10px;
}

div.field-error li {
    margin-left: 15px;
}

div.field-error-cred:before,
div.field-error:before{
    position: absolute;
    content: " ";
    border: solid transparent;
    border-width: 8px;
    left:15px;
    margin-left: -4px;
}

div.field-error:before{
    bottom:100%;
    border-bottom-color: #c83333;
}


div.field-error-cred:before{
    top:100%;
    border-top-color: #c83333;
}


a.ltau {
    color: #444;
    text-decoration: none;
    font-size:15px;
    margin-top:20px;
    display: block;
    text-align: center;
}

