/* Login index.php */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body{
  display: flex;
  justify-content: center;
  align-items: top;
  min-height: 100vh;
  background: url("../img2/slp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    }
  
  /* Box Einstellungen */  
  .wrapper {
      width: 320;
      height: 280px;
      background: transparent;
      border: 2px solid rgba(255, 255, 255, .2);
      backdrop-filter: blur(10px);
      box-shadow: 0 0 10px rgba(0, 0, 0, .2);
      color: white;
      border-radius: 6px;
      padding: 20px 30px;
    }
  
  .wrapper h1 {
      font-size: 28px;
      text-align: center;
      color: white;
  }
  
  .wrapper .input-box{
      position: relative;
      width: 100%;
      height: 40px;
      border-radius: 4px;
      background: transparent;
      margin: 30px 0;
     
  }
  
  .input-box input {
    width: 100%;
    height: 50%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2); 
    border-radius: 40px;
    font-size: 16px;
    color: white;
    padding: 20px 45px 20px 20px;
  }
  
  .input-box input::placeholder {
    color: white;
  }
  
  .input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }
  
  #btn {
    width: 40%;
    height: 45px;
    margin-top: 20px;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: white;
  }
  
  #btn:hover {
    background-color: rgb(41, 95, 20);
  }

  @media screen and (max-with:600px) {
    .wrapper{
      width: 65%;
      padding: 40px;
    }
    
  }