/* Authentication page css */
/*-------------------------*/
.bg-authentication {
  background-color: #F2F4F4;
}

.bg-authentication #icon-arrow {
  position: absolute;
  top: 11px;
  right: 15px;
}

.bg-authentication .brand-text {
  color: #5A8DEE;
  font-weight: 600;
  letter-spacing: 0.01rem;
}

@media only screen and (min-width: 992px) {
  .bg-authentication .disable-rounded-right {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* IE Specific CSS */
  .bg-authentication {
    width: 100%;
    display: block;
  }
}

.divisor {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.divisor .line {
    flex-grow: 1;
    height: 1px;
    background-color: #ccc;
}

.divisor .text {
    margin: 0 1rem;
    color: #666;
    font-size: 0.875rem; /* equivalente a text-sm */
}

.btn-auth{
    border: 1px solid #8080803d;
    cursor: pointer;
    color: black !important;
    width: 100%;
    border-radius: 10px;
}

.btn-auth:hover {
  color: #FFFFFF;
  border: 0px solid #8080803d;
}