.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
}

body{
  direction: rtl;
  font-family: "shabnam";
  
}

.gameList{
  width: 100%;
  padding:10px;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
}
.circlesHolder{
  border-radius: 100%;
  margin: 10px;
  color: white;
  border: 2px solid white;
  text-align: center;
  box-shadow: 2px 1px 10px gray;
  padding: 10px;
  cursor: pointer;
}
.close{
  border:none;
  background-color: #A91D3A;
  color:white;
  font-size: 20px;
}
.text-center{
  font-family: "shabnam";
}
.circlesHolder:hover{
  transform: scale(1.1);
  transition: 250ms;
}
.circlesHolder:active{
  background-image: linear-gradient(to right , #0a297e , #820255);
  transform: rotate(180deg);
  transition: 250ms;
}
.num{
  line-height: 150px;
  font-family: "shabnam";
}
.ecare{
  color: white;
}
.btn{
  margin-right: 10px;
}
.btn-login{
  background-color: rgb(255, 255, 255);
}

.btn-register{
  background-color: #110282;
  color: white;
}

.loginpagediv{
  width: 350px;
  border: 2px solid white;
  box-shadow: 2px 1px 15px gray;
  margin: 10px auto;
}

.loginBtn{
  width: 100%;
  margin-top: 5px;
  padding: 10px;
  color: white;
  border: 10px solid white;
}
.redBg{
  background-color: #820255;
  color: white;
}
.blueBg{
  background-color: #0a297e;
  color: white;
}

.RegisterBtn{
  width: 90%;
  margin: 20px;
  padding: 10px;
  background-color: #0a297e;
  color: white;
}

.imageHolder{
  width: 250px;
  margin: auto;
}

.inputs{
  border: none;
  border-bottom: 2px solid gray;
  text-align: center;
  margin-top: 5px;
  outline: none;
  padding: 10px;
  width: 100%;
}

.login{
  width: 45%;
  margin: 125px auto;
  border: 1px solid black;
  border-radius: 20px;
  background-color: #0379cd;
  color: white;
  text-align: center;
  height: 200px;
}

#backdrop{
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  display: none;
}

.alert_data{
    max-width: 300px;
    transform: translateY(-750px);
    font-size: 12px;
    padding : 10px;
    text-align:center;
    border: 4px solid white;
    box-shadow:2px 3px 5px gray;
    border-radius:30px;
    color:white;
    transition:500ms;
    position: fixed;
    z-index: 1000;
    cursor: pointer;
    left: 35px;
}
#alert_msg{
  margin: 5px;
}

.success_list{
  display: grid;
  grid-template-columns: auto auto auto;
  margin: 20px;
}
.success_item{
  padding: 10px;
  margin: 20px;
  border-radius: 20px;
  border: 1px solid gray;
  box-shadow: 2px 3px 5px gray;
  text-align: center;
  display: flex;
  color: black;
  background-color: white;
}
.suc_left{
  flex: 5;
  padding: 5px;
}
.suc_right{
  flex: 2;
  padding: 5px;
}

table{
  margin: 50px auto;
  text-align: center;
  font-size: 12px;
}
th{
  background-color: #0a297e;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 5px;
}
td{
  text-align: center;
  border: 1px solid;
  padding: 10px;
}

.text-container{
  margin: 40px auto;
  padding: 10px;
  border: 1px solid;
  border-radius: 20px;
  text-align: center;
}

.logo{
  width: 260px;
}


@media (max-width: 1000px) {
    html {
    font-size: 15px;
  }
  .gameList{
    width: 100%;
    grid-template-columns: auto auto;
    margin: auto;
  }

  .login{
    width: 98%;
  }
  .success_list{
    grid-template-columns: auto;
  }
}

@media (min-width:1001px) and (max-width: 1300px)  {
  html {
    font-size: 14px;
  }
  .gameList{
    grid-template-columns: auto auto auto auto;
    margin: 10px;
  }
}

@media (min-width:1301px) {
  html {
    font-size: 14px;
  }
  .gameList{
    grid-template-columns: auto auto auto auto;
  }
}

