@font-face {
    font-family: 'DroidArabicKufiRegular';
    src: url("../../fonts/DroidArabicKufiRegular.ttf");
    font-weight: normal;
    font-style: normal;
}

body{
    font-family: 'DroidArabicKufiRegular';
}

#logo {
    height: 48px;
  }

#brand a{
    float: right;
}

#download{
    direction: rtl;
    text-align: right;
}

#main-dashboard{
    width: 100%;
}

#services{
    direction: rtl;
    text-align: right;
}

#msg{
    direction: rtl;
    text-align: right;
    color: red;
}

#instructions{
    direction: rtl;
    text-align: right;
    color: #444444;
    background-color: #f7f7f7;
    border: 2px solid #f7f7f7;
    border-radius: 5px;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
}

input[type=file] {
  width: 350px;
  max-width: 100%;
  color: #444;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #555;
}

input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 5px 10px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
      background: #0d45a5;
}

#congrat {
    position: absolute;
    top: 0;
    left: 0;
    width: 512px;
    height: 512px;
    opacity: 0;
    z-index: -1;
}


/*  Login Page  */

.page-title h2, .page-title h4{
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}
.login-form{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.login-form .container{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.login-form .container .form-group{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form .container .form-group input {
    margin-bottom: 10px;
    margin-top: 10px;
}

input[type="password"] {
    font-family: 'Times New Roman', Times, serif; 
}

#login-btn, #logout-btn{
    font-size: 12px;
    font-weight: 500;
}

#navbarIcon {
    display: none;
}

@media screen and (max-width: 768px) {

    .login-form{
        width: 100%;
    }

    #content {
        margin-right: 0px;
        padding: 4px;
    }

    #content.active {
        margin-right: 0px;
    }

    #navbarIcon {
        display: block;
    }

    #user-info {
        display: none;
    }

    #sidebar {
        transform: translateX(100%);
    }

    #sidebar.active {
        transform: translateX(0%);
    }
}