:root {}

    body {
      color: white;
      /* background-color: #352f44; */
      margin: 0;
      padding: 0;
      background-image: url('../album/darkg.gif');
      /* Path to your background image */
      background-repeat: repeat-x;
      background-size: cover;
      background-position: center;
      height: 100vh;
      /* Ensure it covers the full viewport height */
      display: flex;
      /* align-items: center; */
      justify-content: center;
      position: relative;

    }

    .wrapper {
      position: relative;
      width: 500px;
      padding: 20px;
      margin-top: 0;

      z-index: 2;

      /* border: 1px solid red; */
    }

    .wrapper h5 {
      text-align: center;
      color: white;
    }

    .wrapper form .form-group span {
      color: red;
    }


    .overlay {
      position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(53, 47, 68, 0.8); 
            /* background-color: rgba(140, 136, 150, 0.9);  */
            z-index: 1; 
    }
