@font-face {
    font-family: roboto-regular;
    src: url(Roboto-Regular.ttf);
}
html, body {
    height: 100%;
    margin: 0;
    min-height: 570px;
    min-width: 400px;
    font-family: roboto-regular, serif;
    background-color: #252525;
}
.center-me {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.container {
    position: absolute;
    width: 100%;
    height: 100%;
}
.container .logo {
    min-width: 166px;
    min-height: 145px;
    padding: 20px 0;
}
.background-container {
    background-color: #252525;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.background-container .resolution-msg{
    color: #ffffff;
    padding-top: 130px;
    font-size: 14px;
}
.content-container {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.container .background {
    width: 1200px;
    min-width: 1000px;
    min-height: 128px;
    margin-top: 370px;
}
.login-dlg {
    position: relative;
    width: 320px;
    height: 335px;
    min-height: 335px;
    box-shadow: 5px 5px 60px rgba(0, 0, 0, 0.5);
    -webkit-flex-direction: column;
    flex-direction: column;
    border-radius: 0 0 3px 3px;
    padding: 20px;
    border-top: 3px solid #36A0E7;
    color: #E7E7E7;
    background-color: #373737;
    margin-top: 60px;
    font-size: 15px;
}
.login-dlg .dlg-header {
    height: 30px;
}
.login-dlg .input-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
    margin-top: 10px;
}
.login-dlg .input-container .input-field {
    height: 40px;
    width: 100%;
    box-sizing: border-box;
    background-color: #1B1B1B;
    border: 8px solid transparent;
    outline: none;
    color: #E7E7E7;
    font-family: inherit;
}
.login-dlg .input-container .input-label {
    width: 100%;
    box-sizing: border-box;
    display: block;
    margin: 10px 0;
}
.login-dlg .btn {
    box-shadow: 0 0 5px black;
    border-radius: 3px;
    width: 100%;
    height: 40px;
    border: none;
    font: inherit;
    cursor: pointer;
}
.login-dlg .btn.login-btn {
    background-color: #36A0E7;
    color: #ffffff;
    border: none;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}
.login-dlg .login-btn:hover {
    background-color: #46B0F7;
}
.login-dlg .login-btn.login-current {
    bottom: 0;
}
.login-dlg .login-btn.disabled {
    background-color: #888888;
}
.login-dlg .title {
    font-family: Tahoma, regular, serif;
    font-size: 24px;
    color: #ffffff;
    box-shadow: none;
    padding-left: 0;
    height: 29px;
}
.login-dlg .btn.windows-user {
    font-family: Tahoma, regular, serif;
    font-size: 12px;
    color: #ffffff;
    box-shadow: none;
    width: 340px;
    text-decoration: underline;
    height: 20px;
    margin-bottom: 20px;
    padding: initial;
    background-color: #373737;
    position: absolute;
    bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.image-logo{
    width: 139px;
    height: 150px;
    margin: 11px;
    background-image: url('../../images/Dalet-webspace_login-icons.png');
}
.error-message{
    font-family: arial, helvetica, clean, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #b81900;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 20px;
    cursor: default;
}
.resolution-msg{
    font-family: Tahoma, regular, serif;
    font-size: 14px;
    color: #ffffff;
    margin-top: 25px;
}
.dlg-place-holder{
    width: 250px;
}