@import url('https://fonts.googleapis.com/css?family=Rubik&display=swap');

body {
    margin: 0;
}

.pasive_container {
   display: block;
   float: left;
   width: 20%;
   height: 100%;
   background: #27282C;
}

.pasive_container h1{
   display: block;
   padding: 10px 20px;
   color: #fff;
   text-decoration: none;
   font-family: "Rubik";
   letter-spacing: 2px;
   font-weight: 400;
   margin: 25px 0px 0px 0px;
   font-size: 25px;
   text-transform: uppercase;
}

.pasive_container a{
   display: block;
   padding: 10px 20px;
   color: #bbb;
   text-decoration: none;
   font-family: "Rubik";
   letter-spacing: 2px;
}

.pasive_container a:hover{
    color: #fff;
    margin-left: 20px;
    transition: 0.4s;
}

.active_container {
    display: block;
    float: right;
    width: 100%;
    height: 100%;
    background: #21252B;
    color: white;
}

.content_container {
    display: block;
    float: right;
    width: 50%;
    height: 100%;
    background-color: #4456A8;
}

.content_container img {
    overflow: auto; 
    margin: auto; 
    position: fixed; 
    top: 0; 
    left: 0; 
    bottom: 0; 
    right: 0;
}

.auth_container {
    display: block;
    float: left;
    width: 50%;
    height: 100%;
    background-color: #27282C;
}

.auth_container form {
    overflow: auto; 
    margin: auto; 
    position: absolute; 
    left: 25; 
    bottom: 25; 
    right: 0;
}

.auth_container h1 {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-family: "Rubik";
    letter-spacing: 2px;
    font-weight: 400;
    margin: 25px 0px 0px 0px;
    font-size: 25px;
    text-transform: uppercase;
}

.CustomButton {
    display: inline-block;
    font-family: "Rubik";
    font-size: 16px;
    color: rgb(68,68,68);
    text-decoration: none;
    padding: .2em 1.5em;
    outline: none;
    border: 2px solid rgba(0,0,0,.1);
    background: rgb(245,245,245) linear-gradient(#f4f4f4, #f1f1f1);
    transition: all .218s ease 0s;
} 

.CustomButton:hover {
    color: #4456A8;
    border: 1px solid rgb(198,198,198);
    background: #f7f7f7 linear-gradient(#f7f7f7, #f1f1f1);
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.CustomButton:active { 
    color: rgb(51,51,51);
    border: 1px solid rgb(204,204,204);
    background: rgb(238,238,238) linear-gradient(rgb(238,238,238), rgb(224,224,224));
    box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
}

.CustomInput {
    font-family: "Rubik";
    margin: 5px auto;
    width: 300px;
    font-size: 14px;
    padding: 6px 0 4px 10px;
    border: 1px solid #cecece;
    background: #F6F6f6;
}

.CustomInput:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}

.ErrorBox {
    width: 100%; 
    height: 0px;
    background-color: #000000;
    margin: 0px 0px 15px 0px;
}

.ErrorBox text {
    font-size: 25px; 
    color: #F73F31; 
    font-family: 'Rubik';
}

.SuccessBox {
    width: 100%; 
    height: 0px;
    background-color: #000000;
    margin: 0px 0px 15px 0px;
}

.SuccessBox text {
    font-size: 25px; 
    color: #4AD44F; 
    font-family: 'Rubik';
}

.table {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #27282C;
    border-collapse: collapse; 
}

.table th {
    font-weight: bold;
    padding: 5px;
    background: #4456A8;
    border: 1px solid #27282C;
    color: #fff;
    font-family: 'Rubik';
}

.table td {
    border: 1px solid #27282C;
    padding: 5px;
    color: #fff;
    font-family: 'Rubik';
}

#table-scroll {
  height: 91%;
  overflow: auto;
}

.block {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5%;
    left: 5%;
    overflow: auto;
}

.ErrorBoxAdmin {
    color: #fff;
    background-color: #F73F31;
    font-family: "Rubik";
    font-size: 18px;
    padding: 5px;
    margin: 5px;
    text-transform: uppercase;
}