body{
    background: linear-gradient(180deg,#2c2c2c 64px,transparent 0) no-repeat,linear-gradient(0deg,#3c3c3c 95.6px,transparent 0) no-repeat,#f6f6f6;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}
.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5 url(/static/accounts/img/bg1.png) no-repeat center center;
    background-size: contain;
}

.login-form_main-container {
    border: 1px solid red;
    display: flex;
    width: 460px;
    height: 540px;
    position: absolute;
    box-shadow: 0 0 30px;
    border: none;
    align-items: center;
    text-align: center;
}
.img-brand{
    display: flex;
    margin-left: 160px;
    margin-top: -340px;
}
.login_form{
    border: 1px solid red;
    position: absolute;
    display: flex;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
    border: 1px;
    top: 50%;
    left: 10%;
}

#id_username {
    width: 325px; 
    height:40px;
    font-size: 18px;
    margin-bottom: 25px;
    border-radius: 4px;
    padding-left: 40px;
}
#id_password{
    width: 325px; 
    height:40px;
    font-size: 18px;
    margin-bottom: 25px;
    border-radius: 4px;
    padding-left: 40px;
}
.dws-input input:hover{
    box-shadow: 0 0 6px 3px rgba(58, 219, 253, 0.35);
   }
   .dws-submit {
    padding: 13px 30px;
    margin: 5px 0 20px 0;
    font-size: 15px;
    color: #fff;
    background-color: #2ca8c6;
    border: none;
    border-bottom: 4px solid #6ee9fd;
    cursor: pointer;
   }
   .dws-submit:hover{
    transition: all 0.5s;
    background: #fff;
    color: #2c536c;
   }
   
   .dws-input::before{
    font-family: "FontAwesome";
    content: "\f023";
    position: absolute;
    font-size: 30px;
    padding: 10px 0 0 7px;
    color: #2c536c;
   }
   .dws-input:nth-child(2)::before{
   content: "\f007";
   }
   .dws-input:hover::before{
    color: #319ebc;
    transition: all 0.3s;
   }

/*************************************************/
.nio-bar{
        direction: ltr;
        color: #ccc;
        font-size: 13px;
        font-weight: 400;
        font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
        line-height: 32px;
        height: 32px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        min-width: 600px;
        z-index: 99999;
        background: #23282d;
}

a{
    text-decoration: none;
    color: #eee
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.nio-wrap{
    position: relative;
    overflow-x: hidden;
}

.nio-content-wrap{
    top: 32px;
    bottom: 0;
    margin: 0;
    padding: 10px;
    height: 100vh;
    left: 36px;
    position: fixed;
    transition: 0.5s;
}

/* внешние границы таблицы серого цвета толщиной 1px */
table {border: 1px solid grey;} 
/* границы ячеек первого ряда таблицы */
th {border: 1px solid grey;}
/* границы ячеек тела таблицы */
td {border: 1px solid grey;}

.nio-menu{
    width: 136px;
    min-width: 136px;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    margin-top: 32px;
    /* сдвигаем (прячем) панель относительно левого края страницы */
    left: -100px;
    /* плавный переход смещения панели */
    -webkit-transition: left 0.5;
    -moz-transition: left 0.5s;
    transition: left 0.5s;
    /* определяем цвет фона панели */
    background-color: #23282d;
    /* поверх других элементов */
    z-index: 2000;
}

.nio-menu-image{
    display: inline-block;
    position: absolute;
    left: auto;
    right: 9px;
}

.nio-menu-name{
    display: none;
}

.adminmenu li{
    height: 18px;
    background: #23282d;
    color: #eee;
    padding: 6px 5px;
    display: block;
    transition: 0.5s all;
}
.adminmenu li:hover{
    background: #191e23;
}

.adminmenu li:hover div.nio-menu-name,
.adminmenu li:hover div.nio-menu-image:before,
.adminmenu label:hover{
    color: #00b9eb;
}

.adminmenu li li a:hover,
.adminmenu li li:hover a,
.adminmenu li li:hover{
    background: #444;
    color: #00b9eb;
    cursor: pointer;
}

.adminmenu li li{
    background: #444;
}
/*------------------------*/

.nio-has-submenu {
    height: 18px;
    position: relative;
}

.nio-submenu{
    position: absolute;
    width: 100%;
    left: 100%;
    opacity: 0;
    transition: 0.5s opacity;
    top: -9999em;
}

.nio-has-submenu:hover .nio-submenu{
    opacity: 1;
    top: 0;
}

.nio-has-submenu:hover:after{
    content: "";
    position: absolute;
    border: 7px solid;
    border-color: transparent #444 transparent transparent;
    top: 10px;
    right: 0;
}

/*Active
*/
.adminmenu .nio-active-menu .nio-submenu-head{
    background: #0073AA;
}
.adminmenu .nio-active-menu .nio-submenu-head:hover{
    background: #0073AA;
    color: #fff;
    cursor: default;
}
.adminmenu .nio-active-menu{
    background: #0073AA;
}
.adminmenu .nio-active-menu:after{
    background: #0073AA;
    content: "";
    position: absolute;
    border: 6px solid;
    border-color: transparent #fff transparent transparent;
    top: 11px;
    right: 0;
}
.adminmenu .nio-active-menu:hover,
.adminmenu .nio-active-menu:hover::after{
    border-color: transparent #0073AA transparent transparent;
    background: #0073AA;
}
.adminmenu .nio-active-menu:hover div.nio-menu-name,
.adminmenu .nio-active-menu:hover div.nio-menu-image:before{
    color: #eee;
}
.adminmenu .nio-submenu-head:hover{
    color: #fff;
}
.adminmenu  li.current{
    color: #fff;
    font-weight: 600;
    border: 0 none;
}
/**/
.nio-submenu-head{
    display: none;
}

.update-count {
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	margin: 1px 0 -1px 2px;
	padding: 0 5px;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	background-color: #ca4a1f;
	color: #fff;
	font-size: 11px;
	line-height: 1.6;
	text-align: center;
	z-index: 26;
}

.count-0 {
	display: none;
}
/*********************************/
.badge-primary {
    color: #fff;
    background-color: #3498db;
}
.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .125rem;
    transition: all .2s ease-in-out;
}
/*
* icons
*/
.icon {
	height: 18px;
	width: 18px;
	padding: 0 5px 0 0;
	margin: 0;
    float: left;
    z-index: auto;
}
/* New Menu icons */

.icon::before {
    color: #eee;
    display: inline-block;
    font-family: "Font Awesome";
    font-family: fontawesome !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;

}
.icon-audible::before{
    content: "\f039";
}
.icon-car::before{
    content: "\f1b9";
}
.icon-balance::before{
    content: "\f1ec";
}
.icon-bill::before{
    content: "\f080";
}
.icon-collapse::before{
    content: "\f137";
    -moz-transform: rotate(180deg); /* Для Firefox */
    -ms-transform: rotate(180deg); /* Для IE */
    -webkit-transform: rotate(180deg); /* Для Safari, Chrome, iOS */
    -o-transform: rotate(180deg); /* Для Opera */
    transform: rotate(180deg);
}
/*********************************/
.nio-menu-hides:checked ~ .nio-menu{
    left: 0;
}

.nio-menu-hides:checked ~ .nio-menu a .nio-menu-name,
.nio-menu-hides:checked ~ .nio-menu .nio-menu-name
{
    display: block;
}

.nio-menu-hides:checked ~ .nio-menu .nio-has-submenu a .nio-menu-image,
.nio-menu-hides:checked ~ .nio-menu .nio-menu-image{
    position: static;
    left: 0;
    right: auto;
}

.nio-menu-hides:checked ~ .nio-menu .collapse-menu div.nio-menu-image{
    padding: 0 0 0 5px;
    -moz-transform: rotate(180deg); /* Для Firefox */
    -ms-transform: rotate(180deg); /* Для IE */
    -webkit-transform: rotate(180deg); /* Для Safari, Chrome, iOS */
    -o-transform: rotate(180deg); /* Для Opera */
    transform: rotate(180deg);
}

.nio-menu-hides:checked ~ .nio-menu .nio-submenu .nio-submenu-head{
    display: none;
}

/* 
 * смещение контента страницы
 * на размер ширины панели,
 * фишка необязательная, на любителя
*/
.nio-menu-hides:checked ~ .nio-content-wrap{
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    transform: translateX(100px);
}

.panel_max {
    width: auto;
    height:90vh;
    padding: 18px 24px;
    background: #fff;
    color: #333;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.panel {
    width: 1136px;
    padding: 18px 24px;
    background: #fff;
    color: #333;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.panel_header {
    padding-top: 18px;
    padding-bottom: 18px;
    }

.panel_header-title {
    position: relative;
    text-align:center;
}

.panel_header-user{
    padding-top: 15px;
    text-align:center;
    border-bottom-style: solid;
    border-width: 1px;
}

.panel_end-user div{
    display:inline-block;
    padding-top: 15px;
    border-width: 1px;
}

.UserWorks{
    width: 25%;
    border-bottom-style: solid;
}
.UserEDU{
    width: 49%;
    align-content: center;
    text-align: center;
}
.UserFullName{
    width: 25%;
    border-bottom-style: solid;
}
.panel_end-1-user{
    width: 200px;
}
.panel_end-2-user{
    width: 200px;
}
.panel_end-3-user{
    width: 200px;
}
.panel_tech-table{
    padding-top: 10px;
}

.tech-sel-col2{
    width: 200px;
}

.tech-sel-col3{
    width: 160px;
}

#id_Work{
    width: 514px;
    height: 36px;
}