body, html {
    height: 100%;
    font-family: "Arial";
    font-weight: lighter;
    color: rgba(250, 235, 215, 0.699);
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .loginBox {
    margin-top: 45px;
    width: 330px;
    box-shadow: 0px 0px 25px -2px rgba(135,130,135,1);
    backdrop-filter: blur(8px) brightness(0.75);
    border-radius: 8px;
    padding: 15px;
  }
  .userImage {
    border-radius: 50%; 
    overflow: hidden; 
    width: 120px; 
    height: 120px; 
    margin: 10px auto 30px;
  }
  .input-wrapper {
    position: relative;
  }
  input {
    display: block;
    width: 300px;
    padding: 15px 10px;
    border-radius: 8px;
    border: 1px solid #ececec;
    margin: 10px 0;
  }
