
      body {
        margin: 0;
        padding: 0;
        min-height: 100vh; /* 100% of the viewport height */
        /* width: 100vw; 100% of the viewport width */
        font-family: Arial;
        position: relative;
      }

      button {
        background-color: black;
        color: white;
        padding: 10px 20px;
        /* margin: 8px 0; */
        border: none;
        cursor: pointer;
        /* width: 45%; */
        /* margin-left: 70px; */
        border-radius: 10px;
        font-size: 15px;
        margin-top: 30px;
        /* font-weight: 600;*/
      }

      button:hover {
        background-color: #ff9900;
        box-shadow: 0px 0px 2px 1px #000;
      }

      img.avatar {
        width: 100%;
      }

      .container {
        padding: 5%;
      }
      .main_log {
        text-align: center;
        padding-top: inherit;
        max-width: 350px;
        margin: 0 auto;
      }

      footer {
        background-color: #fff;
        color: gray;
        text-align: center;
        padding: 10px 0;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top-color: black;
        border-top-style: solid;
        position: absolute;
        bottom: 0;
        width: 100%;
      }

      @media (max-width: 768px) {
        footer {
          flex-direction: column;
        }
      }
      .copyrightContainer {
        font-style: italic;
        padding: 10px;
      }
      .footerContent {
        padding: 10px;
      }
      .footerContent a {
        text-decoration: none; /* Remove underline from the links */
        margin: 0 20px; /* Add some spacing between the links */
        font-weight: 800;
        color: grey;
        cursor: pointer;
      }
      .footerContent a:hover {
        color: #ff9900; /* Change text color on hover */
      }
