body{
    margin: 0;
    padding: 0;
    background-color: black;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#firefly{
    line-height: 200px;
    margin-top: -55px;
}

.form{
    width: 80%;
    margin: auto;
    margin-top: 10%;
}




.but{
    border-radius: 25px;
    border: 2px solid red;
    background-color: transparent;
    color: wheat;
    width: 100px;
}

input[type=text] {
    background: transparent;
    border: 2px solid red;
    border-radius: 25px;
  }

  input[type=text]:focus{
    color: white;
    background: transparent;
    border: 2px solid white;
    border-radius: 25px;
  }

  input[type=password] {
    
    background: transparent;
    border: 2px solid red;
    border-radius: 25px;
  }

  @media screen and (max-width: 997px) {
    .form{
        margin-top: 20%;
    }
  }

  @media screen and (max-width: 576px) {
    .form{
        margin-top: 30%;
    }
  }

