
  #loading-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1f1f1;
    z-index: 9999;
  }

  #loading-gif {
    width: 100%;
    height: 100%;
  }

  #content {
    display: none;
  }

  .input-group .fa {
    font-size: 1.5rem;
    color: #FAB1A0;
  }

  .input-group .form-control {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #6C5CE7;
  }

  .password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #6C5CE7;
    border-radius: 10px;
    background-color: #2D3436;
    padding: 10px;
    margin: 10px 0;
  }

  .password-wrapper input[type="password"] {
    flex-grow: 1;
    height: 10px;
    padding: 0 20px;
    color: #dfe6e9;
    background-color: #2D3436;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
  }

  .password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    color: #dfe6e9;
    cursor: pointer;
  }

  .password-toggle:hover {
    color: #FAB1A0;
  }

  .input-group {
    margin-bottom: 10px;
  }

  .input-group .input-field {
    display: flex;
    align-items: center;
    border: 2px solid #FF0000;
    border-radius: 2px;
    background-color: #1a1a1a;
    box-shadow: 0 0 5px #FF0000, 0 0 10px #FF0000;
  }

  .input-group .input-field .input-addon {
    padding: 5px;
    background-color: #000;
  }

  .input-group .input-field .input-addon span {
    color: #FF0000;
  }

  .input-group .input-field input[type="text"],
  .input-group .input-field input[type="password"] {
    border: none;
    flex-grow: 1;
    height: 15px;
    padding: 0 5px;
    color: #FF0000;
    background-color: #1a1a1a;
    box-shadow: none;
    resize: none;
  }

  .input-group .input-field .password-toggle {
    color: #FF0000;
    cursor: pointer;
  }

  .input-group .input-field input[type="text"]:focus,
  .input-group .input-field input[type="password"]:focus {
    outline: none;
  }

  svg {
    width: 100%;
    height: 100%;
    visibility: hidden;
  }

  .logoanim {
    animation: firariAnim 25s ease 0s infinite normal none;
  }

  @keyframes firariAnim {

    0%,
    100% {
      transform: translateY(0);
      opacity: 1;
    }

    10%,
    30%,
    50%,
    70% {
      opacity: 0.5;
      transform: translateY(-8px);
    }

    20%,
    40%,
    60% {
      opacity: 1;
      transform: translateY(8px);
    }

    80% {
      opacity: 1;
      transform: translateY(6.4px);
    }

    90% {
      transform: translateY(-6.4px);
      opacity: 1;
    }
  }
  body {
    font-family: Arial, sans-serif;
    background-color: #282c34;
    color: white;
    overflow: hidden;
    margin: 0;
    height: 100vh;
  }

  .block-content {
    backdrop-filter: blur(12px) saturate(85%);
    -webkit-backdrop-filter: blur(12px) saturate(85%);
    background-color: rgba(255, 255, 255, 0);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
  }

                    /* Telegram ikonu hover efekti */
                    .telegram-icon {
                        transition: transform 0.3s ease-in-out;
                      }
    
                      .telegram-icon:hover {
                        transform: scale(1.3);
                        /* İkon büyür */
                      }
    
                      /* Buton hover ve küçülüp büyüme animasyonu */
                      input[type="button"],
                      button {
                        transition: transform 0.2s ease-in-out;
                      }
    
                      input[type="button"]:hover,
                      button:hover {
                        transform: scale(1.1);
                        /* Buton biraz büyür */
                      }
    
                      input[type="button"]:active,
                      button:active {
                        transform: scale(0.9);
                        /* Tıklama sırasında küçülür */
                      }

                                        /* Fade-in animasyonu */
                  @keyframes fadeIn {
                    0% {
                      opacity: 0;
                      transform: translateY(-20px);
                    }

                    100% {
                      opacity: 1;
                      transform: translateY(0);
                    }
                  }

                  /* Animasyonun tüm elementlerde uygulanması */
                  .mb-4 {
                    animation: fadeIn 1s ease-in-out;
                  }

                  /* Giriş butonu hover ve aktif animasyonları */
                  .animated-button {
                    position: relative;
                    overflow: hidden;
                    color: #fff;
                    background-color: #ff4d4d;
                    /* Kırmızı ton */
                    border: none;
                    padding: 10px 20px;
                    border-radius: 5px;
                    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
                  }

                  .animated-button:hover {
                    transform: scale(1.05);
                    box-shadow: 0 8px 15px rgba(255, 0, 0, 0.3);
                    background-color: #ff6666;
                  }

                  .animated-button:active {
                    transform: scale(0.95);
                    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
                  }

                  /* Tooltip animasyonu */
                  [data-bs-toggle="tooltip"] {
                    position: relative;
                    animation: tooltipFadeIn 1.2s ease-in-out;
                  }

                  @keyframes tooltipFadeIn {
                    0% {
                      opacity: 0;
                      transform: scale(0.9);
                    }

                    100% {
                      opacity: 1;
                      transform: scale(1);
                    }
                  }

                  .neon {
                    position: relative;
                    overflow: hidden;
                    transition: all 0.5s;
                    box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000;
                    border: 1px solid #ff0000;
                  }

                  .neon:hover {
                    color: #ffffff;
                    background: #ff0000;
                    box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000, 0 0 25px #ff0000, 0 0 30px #ff0000;
                    transition-delay: 0s;
                  }