.admin{
	
}




.admin-login{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	width: 100%;
	padding: 0 10px;
	font-family: IRANSans;
	direction: rtl;
}
.admin-login::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/gms-bg.jpg"), #000;
  background-position: center;
  background-size: cover;
}
.admin-login-holder{
	width: 400px;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.admin-login-form {
  display: flex;
  flex-direction: column;
}

.admin-login-h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
  font-family: Titr;
}

.admin-login-field {
  position: relative;
  border-bottom: 2px solid #ccc;
  margin: 15px 0;
}

.admin-login-field label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  font-size: 16px;
  pointer-events: none;
  transition: 0.15s ease;
}

.admin-login-field input {
  width: 100%;
  height: 40px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
}

.admin-login-field input:focus~label,
.admin-login-field input:valid~label {
  font-size: 0.8rem;
  top: 10px;
  transform: translateY(-120%);
}
.admin-login-submit{
	background: #fff;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.admin-login-submit:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}




.admin-base{
  background: rgba(49,47,47,0.9);

}
.admin-top{
  background: rgba(250,188,20,0.8);
  padding: 8px;
  text-align: center;
}

.admin-main{
  margin:0;
  /*background: linear-gradient(145deg, #e3ebf2, #f9fbfd);*/
  min-height:80vh;
  display:flex;
  flex-direction:column;
}
.content {
  flex:1;
  padding:80px 20px;
  text-align:center;
}



.admin-nav{
  text-align: center;
  padding: 12px;
}

  /* منوی پایین به سبک Fluent Design */
  .bottom-menu {
    /*backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);*/
    background-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(200, 200, 200, 0.4);
    border-radius: 20px ;
    padding: 8px 0px;
  }

  /* چینش وسط */
  .bottom-menu .menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
   
  }

  /* دکمه‌ها */
  .bottom-menu a {
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 12px;
    transition: all 0.25s ease;
    min-width: 75px;
    font-family: Vazir;
  }

  .bottom-menu a i {
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
  }

  /* حالت Hover */
  .bottom-menu a:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: #0078d4;
    transform: translateY(-2px);
  }

  /* حالت انتخاب‌شده */
  .bottom-menu a.active {
    background-color: rgba(0, 120, 212, 0.15);
    color: #0078d4;
    font-weight: 600;
    box-shadow: inset 0 0 6px rgba(0,120,212,0.15);
  }

  /* لمس (افکت فشرده‌شدن سبک ویندوز 11) */
  .bottom-menu a:active {
    transform: scale(0.97);
  }