* {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.bg-login{
    display: flex;
    height: 100vh;
    background-color: grey;
    overflow: hidden;
}

::selection {
    background-color: gray;
  }
  
  .container {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .form {
    width: 400px;
    height: auto;
    background-image: linear-gradient(to bottom, #424242,#212121);
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 0.5rem;
    padding: 3rem 1rem;
  }
  
  .title {
    color: wheat;
    margin: 1rem 0 3rem;
    font-size: 1.3rem;
    text-align: center;
    font-weight: bold;
  }
  
  .input {
    margin: 0.5rem 0;
    padding: 1rem 0.5rem;
    width: 20rem;
    background-color: inherit;
    color: #FFFFFF;
    border: none;
    outline: none;
    padding: 1rem;
    text-decoration: none;
    letter-spacing: 1px;
  }
  
  .username {
    border-bottom: 1px solid wheat;
    transition: all 400ms;
  }
  
  .username:hover {
    background-color: #424242;
    border: none;
    border-radius: 0.5rem;
  }
  
  .password {
    border-bottom: 1px solid wheat;
    transition: all 400ms;
  }
  
  .password:hover {
    background-color: #424242;
    border: none;
    border-radius: 0.5rem;
  }
  
  .btn {
    height: 3rem;
    width: 20rem;
    margin-top: 3rem;
    background-color: wheat;
    border-radius: 0.5rem;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 400ms;
    /* box-shadow: 0 0 10px  antiquewhite, 0 0 10px antiquewhite; */
    box-shadow: none;
  }
  
.btn:hover {
    background-color: antiquewhite;
    /* box-shadow: none; */
    box-shadow: 0 0 10px  antiquewhite, 0 0 10px antiquewhite;
    cursor: pointer;
}