/**
 * Common CSS Styles
 * Shared styles used across multiple pages
 */

/* ============================================
   Navbar Styles
   ============================================ */
.navbar-vertical .navbar-nav .nav-link[data-bs-toggle="collapse"]:after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    content: '';
    width: .5em;
    height: .5em;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: initial;
    margin-left: auto;
    transform: rotate(-45deg) translate(0, -50%);
    transform-origin: top;
    transition: all .3s ease-out;
    margin-top: 5px;
}

.navbar-vertical .navbar-nav .active[data-bs-toggle="collapse"]:after {
    color: white;
}

.navbar-vertical .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true]:after {
    transform: rotate(-135deg) translate(0, -50%);
}

.bg-header {
    background: #011538 !important;
}

#site-list {
    display: none !important;
}

/* ============================================
   Form Styles
   ============================================ */
.input-control {
    display: block;
    width: 100%;
    line-height: 1.4rem;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e5e5e5;
    appearance: none;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

label {
    color: white;
}

.bmd-form-group {
    position: relative;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group-prepend {
    margin-right: -1px;
    display: flex;
}

.input-group-text {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important; 
    padding: 15px 15px 0 !important;    
}

.form-control {
    background: no-repeat bottom, 50% calc(100% - 1px);
    background-size: 0 100%, 100% 100%;
    border: 0;
    height: 36px;
    padding-bottom: 10px;
    margin: 17px 0 0;
    padding-left: 3px !important;
    padding-right: 0;
    border-radius: 0.5rem !important;
    font-size: 14px;
    background-image: linear-gradient(0deg, #9c27b0 2px, rgba(156, 39, 176, 0) 0), linear-gradient(0deg, #d2d2d2 1px, hsla(0, 0%, 82%, 0) 0);
}

/* ============================================
   Button Styles
   ============================================ */
/* .btn {
    box-shadow: unset;
    color: #4740d4;
    border-width: 2px !important;
    border-color: #e8e8e8 !important;
    border-style: solid !important;    
} */

/* .bg-login {
    background-color: #0575E6;
} */

/* ============================================
   Icon Styles
   ============================================ */
.fa {
    font-size: 24px;
}

.p-lock {
    padding: 15px 18px 0px 18px !important;    
}

.f-lock {
    font-size: 25px;
}

.f-others {
    font-size: 24px;
}

/* ============================================
   Password Validation Styles
   ============================================ */
#message {
    display: none;
    background: #f1f1f178;
    color: #000;
    position: relative;
    padding: 20px;
    margin-top: 10px;
}

#message p {
    padding: 10px 15px;
    font-size: 18px;
    text-align: justify;  
}

.valid {
    color: green;
}

.valid:before {
    position: relative;
    left: -20px;
    content: "✔";
}

.invalid {
    color: red;
}

.invalid:before {
    position: relative;
    left: -20px;
    content: "✖";
}

/* ============================================
   Sidebar Styles
   ============================================ */
.eco-sidebar-logo {
    width: 100px;
    height: auto;
}

.enatt-sidebar-logo {
    width: 140px;
    height: auto !important;
}

.font-powered {
    text-align: right;
    margin-bottom: 5px;
    margin-right: -2px;
    font-size: 10px;
}

.font-driven {
    text-align: right;
    margin-bottom: 5px;
    margin-right: 10px;
    font-size: 10px;
}

/* ============================================
   Color Utilities
   ============================================ */
.color-custom {
    color: #3D8881;
}

