@font-face {
  font-family: "IBMPlexSansArabicRegular";
  src: url("../admin/fonts/IBMPlexSansArabic-Regular.ttf");
}
@font-face {
  font-family: "IBMPlexSansArabicLight";
  src: url("../admin/fonts/IBMPlexSansArabic-Light.ttf");
}
@font-face {
  font-family: "IBMPlexSansArabicMedium";
  src: url("../admin/fonts/IBMPlexSansArabic-SemiBold.ttf");
}
@font-face {
  font-family: "IBMPlexSansArabicBold";
  src: url("../admin/fonts/IBMPlexSansArabic-Bold.ttf");
}
* {
  box-sizing: border-box;
}

body, html {
  margin:0;
  padding:0;
  height: 100%;
  width:100%;
  font-family: "IBMPlexSansArabicRegular";
}

.splitdiv{
  height:100%;
  width:50%;
}

.logWrap {
    display: flex;
    height:100%;
    width:100%
}

/* This part contains all of the left side of the screen */
/* ----------------------------------------- */
#leftdiv{
  background-color:#FAFAFA;
}

#leftdivcard{
  margin:0 auto;
  width:80%;
  margin-top: 50vh; 
  transform: translateY(-50%);
  border-radius:10px
}

#leftdivcard .logo img{
  max-width: 80px;
  display: block;
  margin: 0 auto 2rem;
}

#leftdivcard h1 {
  font-family: "IBMPlexSansArabicMedium";
}

#leftbutton{
    background-color:#111111;
    border-radius:5px;
    color:#FAFAFA;
    height: 45px;
    line-height: 40px;
    margin-top: 20px;
    font-size: 14px;
    min-width: 130px;
    cursor: pointer;
}

/* ----------------------------------------- */

/* This part contains all of the left side of the screen */
/* ----------------------------------------- */
#rightdiv{
  min-height: 100vh;
  position: relative;
  background-image: url(../admin/imgs/login-image-2.png);
  background-size: cover;
  background-repeat: no-repeat;
}
/* #rightdiv .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
} */
#rightdivcard{
  margin: 0 auto;
  width: 50%;
  /* margin-top: 50vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-flow: column;
  position: relative;
  z-index: 222;
}

#textrightdivcard{
  padding-top:20px;
  text-align:center;
  color:white;
}

#rightbutton{
    background-color:#FFFFFF;
    border-radius:5px;
    color:#111111;
}
/* ----------------------------------------- */

/* Basic styling */
/* ----------------------------------------- */

h1{
  color:#111111
}

input{
  font-family: "IBMPlexSansArabicRegular";
  font-size:14px;
  background-color: #fff;
  border: 1px solid #e8eaeb;
  width:100%;
  padding:10px 15px;
  margin-top:10px;
  margin-bottom:10px;
  border-radius: .25rem;
  display:block;
  background-color:#FAFAFA;
}

input:focus {
    outline: none !important;
    box-shadow: none;
}

button{
  font-family: "IBMPlexSansArabicRegular";
  outline: none !important;
  margin-bottom:15px;
  border:none;
  font-size:20px;
  padding-left:20px;
  padding-right:20px;
}

.text-center{
  text-align:center;
}

.text-danger{
  color: red;
  font-size: 0.9rem;
}


@media(max-width: 567px) {
    .logWrap {
        flex-flow: column;
    }

    .splitdiv {
        width: 100%;
    }
}
.forgetPassword {
  text-align: left;
}
.forgetPassword a {
  text-decoration: none;
  color: #111111;
}


/* .log-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row-reverse;
} */

.password-wrap {
  position: relative;
}
.password-wrap .toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 16px;
  height: 100%;
  line-height: 60px;
  cursor: pointer;
}

@media(max-width: 567px) {
  #rightdivcard {
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .log-bottom {
    flex-flow: column;
    align-items: flex-start;

  }
}