
    /* General Reset & Body */
    body,html{
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
      align-items: center;
      background: #e3e0e0;
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100vh;
    }

    .container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        display: none;
        width: 100%;
    }

    
    .container.show {
      display: flex;
    }

    .navbar{
        position: fixed;
        top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
        border-radius: 10px;
    }

.button-container {
  display: flex;
  background-color: black;
  width: 250px;
  height: 40px;
  align-items: center;
  justify-content: space-around;
  border-radius: 10px;
}

.button {
  outline: 0 !important;
  border: 0 !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-3px);
}

.icon {
  font-size: 20px;
}

.button .tooltip {
  visibility: hidden;
  width: max-content;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;

  /* Positioning */
  position: absolute;
  bottom: -125%; /* above the button */
  left: 50%;
  transform: translateX(-50%);

  /* Fade-in effect */
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.button:hover .tooltip {
  visibility: visible;
  opacity: 1;
}


    /* Preloader Styles */

        .section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .loader {
      width: 64px;
      height: 64px;
      position: absolute;
      background: #FFF;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10;
    }

    .loader:before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 40px;
      transform: rotate(45deg) translate(30%, 40%);
      background: #ff9371;
      box-shadow: 32px -34px 0 5px #ff3d00;
      animation: slide 2s infinite ease-in-out alternate;
    }

    .loader:after {
      content: "";
      position: absolute;
      left: 10px;
      top: 10px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #ff3d00;
      transform: rotate(0deg);
      transform-origin: 35px 145px;
      animation: rotate 2s infinite ease-in-out;
    }

    @keyframes slide {
      0%, 100% { bottom: -35px; }
      25%, 75% { bottom: -2px; }
      20%, 80% { bottom: 2px; }
    }

    @keyframes rotate {
      0% { transform: rotate(-15deg); }
      25%, 75% { transform: rotate(0deg); }
      100% { transform: rotate(25deg); }
    }

    /* Form Styles */
    .form {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
      background-color: #ffffff;
      padding: 30px;
      width: 450px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      opacity: 1;
      transition: opacity 0.6s ease-in-out;
      z-index: 1;
    }

    @media (max-width: 500px) {
      .form {
        width: 90%;
        padding: 20px;
        margin: 5px;
      }
    }

    ::placeholder {
      font-family: inherit;
    }

    .flex-column > label {
      color: #151717;
      font-weight: 600;
    }

    .inputForm {
      border: 1.5px solid #ecedec;
      border-radius: 10px;
      height: 50px;
      display: flex;
      align-items: center;
      padding-left: 10px;
      transition: 0.2s ease-in-out;
    }

    .inputForm:hover {
      border: 1.5px solid #2d79f3;
    }

    .inputForm:focus-within {
      border: 1.5px solid #2d79f3;
    }

    .input {
      margin-left: 10px;
      border-radius: 10px;
      border: none;
      /* width: 85%; */
      /* height: 100%; */
    }

    .input:focus {
      outline: none;
    }

    .flex-row {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
      justify-content: space-between;
    }

    .span {
      font-size: 14px;
      margin-left: 5px;
      color: #2d79f3;
      font-weight: 500;
      cursor: pointer;
    }

    .button-submit {
      margin: 20px 0 10px 0;
      background-color: #151717;
      border: none;
      color: white;
      font-size: 15px;
      font-weight: 500;
      border-radius: 10px;
      height: 50px;
      width: 100%;
      cursor: pointer;
      transition: background-color 0.2s ease-in-out;
    }

    .button-submit:hover {
      background-color: #252727;
    }

    .p {
      text-align: center;
      color: black;
      font-size: 14px;
      margin: 5px 0;
    }

    .btn {
      margin-top: 10px;
      width: 100%;
      height: 50px;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 500;
      gap: 10px;
      border: 1px solid #ededef;
      background-color: white;
      cursor: pointer;
      transition: 0.2s ease-in-out;
    }

    .btn:hover {
      border: 1px solid #2d79f3;
    }


    /* Footer Styles */
footer{
    position: static;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    margin-bottom: 0;
}

.footerbutton {
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(120deg, #833ab4, #fd1d1d, #fcb045);
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  transition: 0.1s;
}
.footerbutton svg {
  color: white;
  width: 40px;
  height: 30px;
  z-index: 9;
}

.footerbutton:nth-child(2) {
  background: linear-gradient(120deg, #02ff2c, #008a12);
}

.footerbutton:nth-child(3) {
  background: rgb(69, 187, 255);
}

.footerbutton:nth-child(4) {
  background: rgb(255, 33, 33);
}

.footerbutton:nth-child(5) {
  background: black;
}

.footerbutton:active {
  transform: scale(0.85);
}

.footerbutton::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  background-color: #212121;
  border-radius: 50px;
  z-index: -1;
  border: 0px solid rgba(255, 255, 255, 0.411);
  transition: 0.4s;
}

.footerbutton:hover::before {
  width: 0px;
  height: 0px;
}
