.cabecera{
    background-color: #1a1a1a;
    height:50px;
}

.cabecera-titulo{
    color: #ffb800;
    text-align:center;
    padding-top:10px;
}

.cabecera-login{
    color: #ffb800;
    text-align:center;
    padding-top:10px;
    font-size: 21px;
}

.titulo{
    background-color: #ffb800;
    color: #1a1a1a;
    padding: 7px 10px;
    margin: 20px 0px;
    font-size: 16px;
    font-weight: bold;
}

.btn {
    border-radius: 100px;
    text-transform: uppercase;
    float:right;
}

.btn-primary {
    border: solid 1px rgba(0, 0, 0, .7);
    color: rgba(0, 0, 0, .7);
    position: relative;
    background-color: transparent;
    text-align: center;
    border-width: 2px !important;
}

.btn-primary:hover{
    border: solid 1px rgba(0, 0, 0, .7);
    color: rgba(0, 0, 0, .7);
    background-color: transparent;
}

.btn-primary2 {
    border: solid 1px rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    background-color: transparent;
    text-align: center;
    border-width: 2px !important;
    margin-top: -7px !important;
}

.btn-primary2:hover{
    border: solid 1px rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.7);
    background-color: transparent;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Color de fondo gris con opacidad */
    z-index: 9998; /* Asegura que el overlay esté detrás del loader */
  }
  
  .loaderContainer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
  }
  
  .loaderContainer img {
    width: 100px; /* Ajusta el tamaño del loader según sea necesario */
  }