/* --- BRANDING HEADER (LOGO & TEXT) --- */
.descWrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto 30px auto !important; /* Increased margin below header */
    height: auto !important;
    font-weight: bold !important;
    color: inherit !important;
}

/* Quollnet Engineering Logo */
.descWrapper::before {
    content: "" !important;
    background-image: url('/favicon.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    display: block !important;
    height: 90px !important; 
    width: 90px !important;
    margin-bottom: 12px !important;
}

/* --- FORM LAYOUT --- */
.LoginView, form {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Adding top margin to the first input container (Email/Login) */
form .controls:first-child {
    margin-top: 15px !important;
}

/* --- VISIBILITY FIXES (CHECKBOX & LANGUAGE BUTTON) --- */

/* Fix Remember Me text and Checkbox icon visibility */
.e-checkbox, 
.e-checkbox span, 
.e-checkbox i.fontastic {
    color: inherit !important; /* Forces it to follow the theme text color */
    filter: contrast(1.5) !important; /* Sharpen visibility */
    font-size: 15px !important;
    opacity: 1 !important;
}

/* Specific fix for the checkbox icon (☐ / ☑) */
.e-checkbox i.fontastic {
    margin-right: 8px !important;
    display: inline-block !important;
    min-width: 20px !important;
}

/* Fix Language Button (Globe Icon) visibility */
.language-button.fontastic {
    color: inherit !important;
    opacity: 0.8 !important;
    font-size: 18px !important;
    text-decoration: none !important;
}

.language-button.fontastic:hover {
    opacity: 1 !important;
    transform: scale(1.1);
}

/* --- FOOTER DESCRIPTION --- */
.quollnet-brief {
    margin-top: 25px !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(128, 128, 128, 0.3) !important;
    font-size: 12.5px !important;
    line-height: 1.6 !important;
    color: inherit !important;
    opacity: 0.7;
    text-align: center !important;
}

.quollnet-brief a {
    color: #004a99 !important;
    text-decoration: underline !important;
    font-weight: bold !important;
}