body {
    background-color: white;
    margin: 0;
    padding: 0px;
    font-family: sans-serif;
    width: 100%;
    min-height: 100vh;
    color: black;
    text-align: center;
    transition: background-color 0.5s, color 0.5s;
    overflow-x: hidden;
  }
  .navbar {
      display: flex;
      justify-content: space-between;
  }
  .navbar-right {
      display: flex;
      justify-content: space-between;
  }
  body.light-mode {
      background-color: #ffffff;
      color: #000000 !important;
  }
  
  body.dark-mode {
      background-color: #000000;
      color: #ffffff !important;
  }
  
  body.light-mode .theme-toggle{
    background-image: linear-gradient(
      to top,
      blue,
      green
  );
  color: white;
  }
  body.dark-mode .theme-toggle{
      background-color: white;
      color: black;
  }
  .theme-toggle {
      position: fixed;
      top: 10px;
      right: 20px;
      cursor: pointer;
      border-radius: 8px;
      text-align: center;
      padding: 5px 5px 5px 5px;
  }
  @media screen and (max-width: 767px) {
      .theme-toggle {
          top: 90px;
      }
      .navbar-left h1 {
          font-size: 23px;
      }
      .navbar-right {
          float: right;
          margin-right: -90px;
      }
      .navbar-right h1 {
          display: none;
      }
      body {
        text-align: center;
      }
  }
  .fa-sun {
      font-size:25px;
      padding: 5px;
  }
  .fa-moon {
      font-size:25px;
      padding: 5px;
  }
  .theme-icon {
      width: 30px;
      height: 30px;
  }
  
  body.light-mode a {
    text-decoration: none;
    color: black;
  }
  .navbar-left h1{
      margin-left: 20px;
  }
  body.dark-mode a {
      text-decoration: none;
      color: white;
    }
    .validation {
      margin-right: 190px;
      margin-top: 11px;
      display: flex;
    }
    .validation i {
      margin-top: 10px;
      margin-right: 10px
    }
    .validation h1 {
      font-size: 16px;
    }
    .top-of-form {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .icon {
    display: flex;
    box-shadow: 0px 4px 6px rgb(219, 217, 217);
    padding: 5px 220px 5px 20px;
    align-items: center;
    border-radius: 5px;
  }
  
  @media screen and (max-width: 767px) {
    .top-of-form {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .navbar {
      margin-top: 10px;
    }
    .icon {
      margin-top: 45px;
      padding: 5px 160px 5px 30px;
    }
    .icon .icon-left {
      margin-right: 10px;
      margin-left: 8px;
    }
  }
  .icon .icon-left {
    margin-left: 20px;
  }
  
  .icon .icon-right {
    margin-left: 10px;
  }
  .icon .icon-right h2 {
    font-size: 20px;
  }
  .icon .icon-right p {
    font-size: 17px;
    color: gray;
    margin-top: -6px;
  }
  
    .icon3 .icon3-right p {
      font-size: 17px;
      color: gray;
      margin-top: -6px;
    }
  .fa-wallet {
      font-size: 20px;
  }
  