body {
    font-family: 'Font weights BoutrosMBCDinkum', sans-serif !important;
}

  /* إعداد الخلفية المتحركة */
  .animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1f3465;
    overflow: hidden;
    z-index: -1;
  }

  .square {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(111, 142, 213, 0.5);
    animation: morph 5s infinite;
  }

  @keyframes morph {
    0% {
      border-radius: 0;
      transform: scale(1) rotate(0deg);
    }
    50% {
      border-radius: 50%;
      transform: scale(1.2) rotate(45deg);
    }
    100% {
      border-radius: 0;
      transform: scale(1) rotate(0deg);
    }
  }

  /* إعداد أماكن وأوقات حركة المربعات */
  .square:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-duration: 4s;
  }

  .square:nth-child(2) {
    top: 30%;
    left: 50%;
    animation-duration: 6s;
  }

  .square:nth-child(3) {
    top: 60%;
    left: 70%;
    animation-duration: 5s;
  }

  .square:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-duration: 7s;
  }

  .square:nth-child(5) {
    top: 50%;
    left: 80%;
    animation-duration: 6s;
  }

  .square:nth-child(6) {
    top: 15%;
    left: 60%;
    animation-duration: 5s;
  }



  /* نمط الصفحة */
  .signin-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
  }

  .signin-wrapper {
    width: 100%;
  }

  .signin-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
  }
  .signin-wrapper {
    width: 100%;
  }
