body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dk-darker-bg);
    font-size: 14px;
    font-weight: 500px;
    width: 100%;
}
.form-outer{
    position:fixed;
    top: 50%;
    left: 50%;
    width:30em;
    height:20em;
    margin-top: -9em; /*set to a negative number 1/2 of your height*/
    margin-left: -15em; /*set to a negative number 1/2 of your width*/
    border: 1px solid #ccc;
    background-color: #f3f3f3;
    padding: 30px 30px 50px 30px;
}
.form-title{
    text-align: center;
    padding: 10px;
    font-size: 22px;
    font-weight: 600;
    color: #00a7a7;
}

input[type=text], input[type=password] {
  width: 100% !important; 
  padding: 12px 5px !important;
  box-sizing: border-box !important;
}

input[type=textarea], input[type=date] input[type=month]  {
  width: 100% !important; 
  padding: 12px 5px !important;
  box-sizing: border-box !important;
}

input[type=file] {
  width: 100% !important; 
  padding: 9px 5px !important;
  box-sizing: border-box !important;
  background-color: #fff;
}


select {
  width: 100% !important; 
  padding: 13px 5px !important;
  box-sizing: border-box !important;
}

input[type=submit]
{
    width: 200px;
    padding: 10px;
    background-color: #01aab4;
    color: #fff;
    border-radius: 25px;
}


 .pb-20{
     padding-bottom: 20px;
 }
 
 .log-btn{
     margin:0px auto;
 }
 
 i{
     margin-right:10px;
 }
 
 .header {
    overflow: hidden;
    background-color: #5d5d5d;
    padding: 0px 10px;
}

.header a {
float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 15px;
    line-height: 25px;
    border-radius: 21px;
}

.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

.header a:hover {
  background-color: #ddd;
  color: black;
}

.header a.active {
background-color: #01aab4;
    color: white;
}

.header-right {
  float: right;
  margin: 30px 0px;
}

.header-right a{
  background-color:#fff;
  margin-left:10px;
}

table, td, th {
  border: 1px solid;
}

table {
  width: 100%;
}

.outer-90{
    width:90%;
    margin:0 auto;
}

.filter{
    background-color: #01aab4;
}

.btn-filter{
    width: 200px;
    padding: 5px 10px !important;
    background-color: #01aab4;
    color: #fff;
    border-radius: 25px;
}

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
  }
}
 
 