  body{
    font-family: 'Roboto';
  }

  #background-container {
    position: relative; /* Necesario para posicionar correctamente el pseudo-elemento */
    transition: background-color 0.8s ease; /* Transición suave del color de fondo */
  }

  #background-container.half-opacity::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: -1;
  }

  #FondoOpaco {
    background-color: white;
  }
  /* Barra lateral */
  ::-webkit-scrollbar {
    width: 15px;
  }

  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
    background: #1a3057;
    border-radius: 10px;
  }
  /*Design general*/
  @media (min-width: 981px) {
    body {
      overflow-y: hidden;
    }
  }
  #custom-image {
    width: 400px;
    height: 300px;
  }

  #square_column_1 {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }
  .md_view {
    height: 100vh;
  }
  #TitlePrincipal {
    font-size: 50px;
    font-weight: bold;
  }
  #Title {
    font-size: 35px;
    font-weight: bold;
  }
  #Title_second {
    font-size: 17px;
    font-weight: bold;
  }

  .invalid-feedback {
    margin-top: -1.15rem;
    margin-bottom: 1rem;
    font-size: 0.55rem;
    text-align: right;
  }

  /*Movil Design*/
  @media (max-width: 768px) {
    h2.text-white {
      font-size: 40px !important;
    }
    #custom-image {
      width: 150px;
      height: 100px;
    }
    #square_column_1 {
      height: 250px;
      border-top-right-radius: 0px;
      border-bottom-left-radius: 40px;
      border-bottom-right-radius: 40px;
    }
    #Title {
      font-size: 20px;
    }
  }

  /* Tablet Design */
  @media (min-width: 769px) and (max-width: 980px) {
    h2.text-white {
      font-size: 40px !important;
    }

    #custom-image {
      width: 200px;
      height: 150px;
    }

    #square_column_1 {
      height: 250px;
      border-top-right-radius: 0px;
      border-bottom-left-radius: 40px;
      border-bottom-right-radius: 40px;
    }

    .md_view {
      height: 55vh;
    }
    #inputs {
      width: 400px;
    }
  }

