     body {
        padding: 0;
        margin: 0;
        overflow: hidden;
        align-items: center;
        justify-content: center;
        display: flex;
        height: 100vh;
        background: url(chiken.webp) no-repeat;
        background-size: cover;
        background-position: center;
        font-size: 18px;
        font: 1.2em "Fira Sans", sans-serif;
        direction: rtl;
      }
      .container {
        width: 380px;
        background-color: rgba(150, 200, 0, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        border-radius: 30px;
        padding: 40px 10px 40px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
      }
      .user {
        width: 150px;
        height: 150px;
      }
      input {
        width: 100%;
        padding: 10px;
        border: none;
        outline: none;
        color: #fff;
        font-size: 20px;
        background: transparent;
      }


      button {
        padding: 10px;
        margin-top: 20px;
        width: 60%;
        border-radius: 15px;
        font-size: 20px;
        cursor: pointer;
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.5);
        transition: 0.5s ease;
        color: #354;
      }
      button:active{
        background: rgba(255, 255, 255, 0.8);
      }
      button:hover{
        width: 65%;
      }

      input::placeholder{
        color: rgba(255, 255, 255, 0.5);;
      }
      .input-div {
        display: flex;
        width: 90%;
        margin: 10px;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        background: transparent;
        transition: 0.5s ease-in-out;
      }
      .input-div:hover{
        width: 95%;
      }
      .input-div div {
        width: 20%;
        display: grid;
        place-items: center;
      }
      i {
        color: #ffffff90;
      }
      .input-div i {
        margin-left: 10px;
        margin-right: 10px;
        font-size: 18px;
      }