 

html {
    height: 100%;
    font-size: 100%;
}

body {
    margin: 0;
    padding: 0;
    font: 400 .8rem 'Open Sans', sans-serif;
    color: #333333;
    background: #eff1f5;
    min-height: 100%;
    position: relative;
    direction:rtl;
}

body.authentication {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b1b1b;
}

 

a {
    color: #000000;
}

a:hover {
    text-decoration: none;
}

img {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

h5 {
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    margin-bottom: .3rem;
}

 

.login-screen {
    position: relative;
    background: #ffffff;
    margin: 60px auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    min-width: 320px;
    max-width: 320px;
}

.login-screen .login-logo {
    margin: 1rem 0 2rem 0;
    display: flex;
    font-size: 2rem;
    font-weight: 700;
}

.login-screen .login-logo img {
    max-width: 110px;
}

.login-screen .login-box {
    padding: 1.5rem;
}

.login-screen .login-box h5 {
    margin: 0 0 1rem 0;
    font-size: .9rem;
    line-height: 150%;
    font-weight: 400;
    color: #888888;
}

.login-screen .actions {
    margin-bottom: .5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.login-screen .actions .btn {
    margin-right: 10px;
}

 

button:focus {
    outline: none;
}

.btn {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid transparent;
    font-size: .825rem;
}

.btn-white:not(:disabled):not(.disabled):active,
.btn-white:not(:disabled):not(.disabled).active {
    color: #333333;
    background-color: #e4e4e4;
    border-color: #e4e4e4;
    border-bottom: 1px solid #d7d7d7;
}

.btn-white:not(:disabled):not(.disabled):active:focus,
.btn-white:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem rgba(228, 228, 228, 0.3);
}

.btn-primary {
    color: #ffffff;
    background-color: #ee0000;
    border-color: #ee0000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #d40000;
    border-color: #d40000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.15);
    background-color: #d40000;
    border-color: #d40000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-primary:disabled {
    color: #ffffff;
    background-color: #ee0000;
    border-color: #ee0000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
 
.form-group {
    margin: 0 0 1rem 0;
}

.form-control {
    border: 1px solid #dddddd;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: .825rem;
}

.form-control:hover {
    border: 1px solid #bbbbbb;
}

.form-control:focus {
    border-color: #ee0000;
    box-shadow: none;
}