*{
  margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-image: url(background.jpg);
    background-size: cover;
    font-family: sans-serif;
  }
  
  .container {
    display: flex;
    background-color: rgba(0, 89, 255, 0.485);
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  form {
    position: relative;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .input-group,.input-group2 {
    position: relative;
    margin-bottom: 50px;
  }
  
  .Showpass{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    cursor: url(hand.cur), pointer;
  }
  
  .Showpass:active{
  background-color: rgba(255, 0, 0, 0.2);
  }
  
  #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;
    z-index: -1;
  
  }
  
  #particles-js:before { 
    content: "";
    height: 100%;
    width: 100%;
    left:0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    border-radius: 2%;
    z-index: -10;
  background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
  background-size: 800% 800%;
  
  -webkit-animation: rainbow 25s ease infinite;
  -z-animation: rainbow 25s ease infinite;
  -o-animation: rainbow 25s ease infinite;
    animation: rainbow 25s ease infinite;
  }
  
  @-webkit-keyframes rainbow {
      0%{background-position:0% 82%}
      50%{background-position:100% 19%;}
      100%{background-position:0% 82%}
  }
  @-moz-keyframes rainbow {
      0%{background-position:0% 82%}
      50%{background-position:100% 19%;}
      100%{background-position:0% 82%}
  }
  @-o-keyframes rainbow {
      0%{background-position:0% 82%}
      50%{background-position:100% 19%;}
      100%{background-position:0% 82%}
  }
  @keyframes rainbow { 
      0%{background-position:0% 82%}
      50%{background-position:100% 19%; }
      100%{background-position:0% 82%}
  }
  
  input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-size: 16px;
    color: #333;
    background-color: transparent;
  }
  
  label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    font-size: 16px;
    color: #ccc;
    pointer-events: none;
    transition: all 0.5s ease;
  }
  
  
  
  input:focus + label,
  input:valid + label {
    top: -30px;
    left: 0;
    color: #333;
    font-size: 14px;
    
  }
  
  button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: -5;
  }
  
  button:hover {
    background-color: #555;
  }
  
  .container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.2)
    );
    z-index: -1;
    filter: blur(10px);
  }
  
  