/* Carousel */
.carousel-inner img {
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Section Login */
.sec-login {
    min-height: 40rem;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.sec-login input::-webkit-input-placeholder {
    color: black; /*Change the placeholder color*/
    opacity: 0.2; /*Change the opacity between 0 and 1*/
}

.sec-login p {
    font-size: 1.4ch;
}

.sec-login small {
    font-size: 1.2ch;
}

.sec-login label {
    font-size: 1.6ch;
}

/* hr style */
.hr-text{
    position: relative;
    outline: 0;
    border: 0;
    height: 1.5em;
  }

.hr-text:before{
    content: '';
    position: absolute;
    background: green;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
  }
  .hr-text:after{
    content: attr(data-content);
    position: relative;
    display: inline-block;
    color: black;
    padding: 0 1em;
    top: auto;
    line-height: 1.5em;
    font-size: 1.5ch;
    color: #818078;
    background-color: #fcfcfa;
  }