body {
      font-family: 'Inter', sans-serif;
      font-size: 18pt;
      font-weight: 700;
      margin: 0;
      padding: 20px;
      color: #FFFFFF;
      background-color: #000000;
      min-height: 100vh;
    }

    h2 {
      color: #FFFFFF;
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: 19pt;
    }

    h3 {
      color: #FFFFFF;
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 15pt;
    }

    
    @keyframes zoomIn {
      from {
        opacity: 0;
        transform: scale(0.8)
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .form-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
    }

    .image-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .image-section {
      flex: 1;
    }

    /*Para dispositivos moviles*/
    @media (max-width: 768px) {
  .form-container {
    flex-direction: column;
  }

  .image-section {
    width: 100%;
  }

  .form {
    width: 100%;
  }
}

    form {
      max-width: 400px;
      margin: 10px auto;
      padding: 40px;
      background: rgba(255, 255, 255, 0);
      border-radius: 0px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      animation: zoomIn 0.6s ease-out;
      flex: 1;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="file"] {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      box-sizing: border-box;
      border: 1px solid #cccccc;
      border-radius: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 12pt;
      font-weight: 400;
    }

    /* Cuando el usuario está dentro de la wallet */
.fullscreen-wallet {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0;
  padding: 0;
}

.fullscreen-wallet .image-section {
  display: none !important;
}


    button {
      padding: 10px 12px;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin: 5px;
      font-family: 'Inter', sans-serif;
      font-size: 11pt;
      font-weight: 400;
      background-color: #0033ff;
    }

    button:hover {
      opacity: 0.9;
    }

    #navButtons {
      text-align: center;
      margin-bottom: 10px;
    }

    #logoutBtn {
      display: block;
      margin: 0 auto 20px auto;
      background-color: #0C0C0C;
      color: white;
    }

    #walletSection {
      max-width: 4500px;
      margin: 0px;
      padding: 0px;
      background: black;
      border-radius: 16px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      border: 0px solid #ccc;
    }

    #walletSection p {
      font-family: 'Inter', sans-serif;
      font-size: 13pt;
      font-weight: 500;
    }

    .balance-title {
     font-family: 'Inter', sans-serif;
     font-size: 12pt;
     font-weight: 300;
     text-align: left;
     color: #BDC5D0;
     margin-bottom: 3px; 
     padding: 0;
    }

    .balance-amount {
     font-family: 'Inter', sans-serif !important;
     font-size: 26pt;
     font-weight: 700;
     letter-spacing: -0.5px;
     text-align: left;
     margin-top: 8px;
    }

    .button-group {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
    }

    .portfolio {
      margin-top: 12px;
      text-align: left;
      background: #0C0C0C;
      padding: 13px;
      border-radius: 12px;
      border: 0px solid #ddd;
    }

    .portfolio img {
      width: 38px;
      height: 38px;
      border-radius: 50%;
    }

    .portfolio p {
      margin: 10px 1;
    }

    .portfolio p:first-of-type {
      font-family: 'Inter', sans-serif;
      font-size: 22pt;
      font-weight: 700;
    }

    #registerMsg,
    #loginMsg {
      text-align: center;
      margin-top: 10px;
      font-weight: 600;
      color: rgb(0, 8, 255);
      font-size: 13pt;
    }

     .balance-wrapper {
      position: relative;
      display: inline-block;
      width: 100%;
      padding: 10px 0;
      text-align: right;
    }

     .balance-wrapper::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 90%;
      height: 90%;
      background-image: url('https://custom-images.strikinglycdn.com/res/hrscywv4p/image/upload/c_limit,fl_lossy,h_9000,w_1200,f_auto,q_auto/7885357/970325_12329.png');
      background-repeat: no-repeat;
      background-position: left center;
      background-size: contain;
      opacity: 0.7; /* Puede ajustar esto si desea más visibilidad */
      z-index: 0;
    }

    .balance-title,
    .balance-amount {
     position: relative;
     z-index: 1;
    }