:root{
    --main-bg: #fff500;
    --main-text: #161616;
    --secondary-bg: #fff500;
    --secondary-text: #fff500;
    --bg-primary: #fffacc;
}
html { 
    font-size: 100%;  /* This is the default size    */
}
body {  
    font-family: Verdana, Geneva, sans-serif, serif, arial;
    font-size: 0.75em; /* 12px */
}

.bgInput{
    background-color:  var(--bg-primary);
}
/* Responsive images */
/*img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 15% 100%;
}*/
h1 { 
    font-size: 1.5em; 
/*     24px */
}
.invalid-feedback{
    font-family: monospace;
    font-size: 0.5em;
    color: red;
}
.logo{
    width: 48px;
}

.mainBackground {
    background-color: var(--main-bg);
    color: var(--main-text);
    font-weight: bold;
}

.mainButton{
    color: var(--main-text);
    background-color: var(--main-bg);
    font-weight: bold;

}


.simpleButton{
    background-color: var(--main-bg);
    color: var(--main-text);
    font-weight: bold;

}

#features{
    color: var(--main-text);
    font-size: 1rem;
}
#features .feature_header{
    font-size: 1.5rem;
}
.feature_box{
    width: 25%;
    margin: 2px;
}
.feature_box_inner{
    display: flex;
    flex-direction: column;
    align-items:  center;
}
.feature_box_inner_header{
    max-width: 60%;
    font-size: 1.5rem;
}

#hero{
    text-justify: auto;
    height: 100%; 

}
#hero_header{
    font-size: 3rem;
}
#hero_description{
    font-size: 1rem;
}
.secoundText{
    color: #c29304;
}
#password-content, #searchContainer{
    position: relative;
  }
#show-password, #searchIcon{
    position:absolute;
    top:40%;
    right: 4%;
    cursor: pointer;
    color: lightgray;
}
#show-password:hover, #searchIcon:hover{
    color:gray;
}
.flex-container{
    display: flex;
    gap: 2px;
    align-items: center;
}
.flex-container-column{
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.iconTab{
    width: 24px;
}
.icon_generalReport{
    background-image: url('/public/images/pg05/general-report-yellow.png');
}
.icon_generalReport:hover{
    background-image: url('/public/images/pg05/general-report-white.png');
}
.icon_financialReport{
    background-image: url('/public/images/pg05/financial-report-yellow.png');
}
.icon_financialReport:hover{
    background-image: url('/public/images/pg05/financial-report-white.png');
}
.icon_customersReport{
    background-image: url('/public/images/pg05/customers-report-yellow.png');
}
.icon_customersReport:hover{
    background-image: url('/public/images/pg05/customers-report-white.png');
}
.icon_productsReport{
    background-image: url('/public/images/pg05/products-report-white.png');
}
.icon_productsReport:hover{
    background-image: url('/public/images/pg05/products-report-white.png');
}

#header_generalReport .iconHeader{
    background-image: url('/public/images/pg05/png/general-report-black.png');
}

@media screen and (min-width: 600px) {
    #hero{
        height: 100vh; 
    }

    #hero_header{
        font-size: 5rem;
    }

    
}
