body{
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80vh;
            background: url('../img/4c94c0f8-1024-4b93-aba0-11f2e14e8636.gif');
            background-size: cover;
        }
        .kk{
            backdrop-filter: blur(20px);
            padding: 2.3rem 3rem 3rem;
            border-radius: 40px;
            border: 1px solid white;
            box-shadow: 4px 4px black;
        }
        .inputbox{
            margin-bottom: 1rem;
        }
        .inputbox input{
            height: 3rem;
            border-radius: 10px;
            border: none;
            background-color: white;
            padding-left: 1rem;
            width: 300px;
        }
        .ll{
            color: white;
            text-align: center;
            font-size: 3rem;
        }
        .buttonbox{
            display: flex;
            justify-content: center;
        }
        .buttonbox button{
            width: 20rem;
            height: 3rem;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
            
        }
        .mm{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        color:#ffffff;
        a{
          color:#ffffff;
          margin-left: 5px; 
        }
    }
    .alert {
      padding: 15px;
      background-color: #f44336;
      color: white;
      border-radius: 5px;
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 9999;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      opacity: 1;
      transition: opacity 0.6s;
      animation: alertslide 0.5s ease;
    }
    .closebtn {
      position: absolute;
      top: 0;
      right: 10px;
      color: white;
      font-size: 20px;
      cursor: pointer;
    }
    @keyframes alertslide{
      0%{transform:translateX(0);}
      50%{transform:translateX(100px);}
      100%{transform:translateX(0);}
    }