.banner-title, .banner-description {
    font-family: "Montserrat", sans-serif;
}

.banner-description-container {
    background: #f3f3f3;
    padding: 10px;
    border-radius: 10px;;
}

.banner-font-color {
    color: #081D55;
}

.banner-font-weight {
    font-weight: 700;
}

.banner-description {
    color: #000;
    font-size: 14px;
    margin-top: 10px;
}

.banner-button {
    text-align: center;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    opacity: 1;
    mix-blend-mode: normal;
    padding: 7px 18px;
    font-size: 13px;
    background: #00376F;
    color: rgb(255, 255, 255);
    border-radius: 35px;    
    margin: 0px;
    z-index: auto;
    border-width: 0px;
    letter-spacing: 0px;
}

.banner-button-link {
    text-decoration: none !important;
    color: inherit;
}
.banner-button-link:hover {
    text-decoration: none !important;
    color: inherit;
}


.banner-description-container {
  display: flex; 
}

.banner-description-section {
  flex: 0 0 80%;     /* ocupa el 80% del ancho */
  padding: 10px;

}

.banner-container-button {
    flex: 0 0 20%;     /* ocupa el 20% del ancho */
    display: flex;              /* activa flexbox dentro de la columna */
    justify-content: center;    /* centra horizontalmente */
    align-items: center;  
}

/* En pantallas pequeñas, se apilan */
@media (max-width: 768px) {
  .banner-description-section,
  .banner-container-button {
    flex: 0 0 100%;
  }
}




.access-denied-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fffaf0;
  border: 1px solid #d4af37;
  border-radius: 8px;
  padding: 24px 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  max-width: 100%;
  margin: 10px auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.access-denied-box .content {
  flex: 1;
  padding-right: 32px;
}

.access-denied-box .title {
  color: #8c6a2e;
  /*font-size: 1.5rem;*/
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
}

.access-denied-box .description p {
  color: #333333;
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 8px 0;
}

.access-denied-box .description p:last-child {
  margin-bottom: 0;
}

.access-denied-box .request-button {
  background-color: #0d1e4c;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.access-denied-box .request-button:hover {
  background-color: #0a1638;
}

@media (max-width: 768px) {
  .access-denied-box {
    flex-direction: column; 
    text-align: center;
    padding: 24px;
  }

  .access-denied-box .content {
    padding-right: 0;
    margin-bottom: 24px;
  }

  .access-denied-box .title {
    font-size: 1.3rem;
  }
}







/* Contenedor principal */
.request-data-alert {
    width: 100%;
    background: #fffdf5;
    border: 1px solid #f0e6c0;
    border-radius: 10px;
    border-left: 3px solid #f0e6c0;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.request-data-alert__content {
    padding: 15px 10px 10px;
}


.status-request-data-pill {
    display: inline-block;
    background: #fff8e0;
    border: 1px solid #f0d060;
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 18px;
}

.status-request-data-pill__text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #a07000;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    vertical-align: middle;
}

/* Textos */
.request-data-alert__title {
    margin: 0 0 10px;
    font-family: 'Syne', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0d1120;
    line-height: 24px;
}

.request-data-alert__description {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #171718;
    line-height: 21px;
}

#request-data-success-wrapper {
    max-width: 600px;
    /*margin: 40px auto;*/
    animation: slideUp 0.5s ease-out;
}

#request-data-error-message {
    display: none;
    color: #e53e3e;
    background: #fff5f5;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    border: 1px solid #feb2b2;
    animation: shake 0.4s ease-in-out;
}
