@font-face {
  font-family: 'Yekan';
  src: url('../fonts/Yekan.woff') format('woff2'),
       url('../fonts/Yekan.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}
@keyframes logoEnter {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translateY(20px) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

html, body {
  height: 100%;
  width: 100%;
    margin: 0;
    padding: 0;
  direction: rtl;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;                 /* فعال کردن Flex */
  align-items: center;           /* وسط عمودی */
  justify-content: center;       /* وسط افقی */
  background: url("../img/bg.jpg") no-repeat center center / cover;
  font-family: "Yekan";
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px); /* میزان محوشدن */
  -webkit-backdrop-filter: blur(8px); /* برای کروم/سافاری */
}
.glass-card {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      max-width: 400px;
      width: 100%;
    }

.logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 1rem;

  /* انیمیشن */
  animation: logoEnter 1s ease-out forwards;
}
.mini-bold {
  font-weight: bold;   /* بولد */
  font-size: 12px;     /* ریز */
}
.card, .card-body, .table-responsive {
    margin: 0;
    padding: 0;
    border-radius: 0; /* اگر میخوای گوشه‌ها صاف باشه */
}

.table {
    margin: 0;
    width: 100%;
}