/*
	Home & Lawn
	Copyright© 2014
	All Rights Reserved
*/
/*------------------------------------------------------------------------------------------ RESET */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none;
    }

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    border: 0;
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

/* apply a natural box layout model to all elements */
*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*------------------------------------------------------------------------------------------ INITIALIZATION */

/*------------------------------------------------------------------------------------------ HTML ELEMENTS */
a:link, a:visited, a:active {
    color: #90cb01;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 2.25em;
    font-family: Arial;
    color: #fff;
    margin: 0px;
}

h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 1.3em;
    margin: 10px 0px;
    color: #004fa3;
}

h3, h4, h5 {
    font-style: normal;
    font-weight: bold;
    font-size: 1.1em;
    margin: 5px 0px;
    line-height: 1;
    color: #333;
}

hr {
    color: #999;
    background: #999;
    height: 1px;
    border: 0px;
    margin: 10px 0px;
}

fieldset {
    display: block;
    margin-left: 2px;
    margin-right: 2px;
    padding-top: 0.35em;
    padding-bottom: 0.625em;
    padding-left: 0.75em;
    padding-right: 0.75em;
    border: 1px dotted #666;
}

legend {
    display: block;
    padding-left: 5px;
    padding-right: 5px;
    border: none;
    margin: auto;
    font-size: 1.5em;
    background-color: #ccc;
}

.center {
    display: block;
    margin: 0px auto;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/*------------------------------------------------------------------------------------------ COMMON LAYOUT */
html, body, form {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    background: url(/_includes/images/bg/login-bg.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

#divLoginPage {
    position: absolute;
    /*top: 0;
    left: 0;*/
    /*width: 100vw;
    height: 100vh;*/
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the alpha value (0.5) for darkness */
    overflow: auto;
    /*position: fixed;*/
    /*background-color: rgba(0, 0, 0, 0.5);*/ /* Adjust the alpha value (0.5) for darkness */
}

#divLoginHeader {
    /*position: fixed; - removed for mobile device support  
	top: 0;
	left: 0;*/
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

    #divLoginHeader img {
        margin: 20px;
        max-width:300px;
    }

#divLoginContent {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 10px;
}
/******************************************************************************** LOGIN */
#divLoginTitle {
    margin: 0px auto 20px;
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-family: Arial, 'Helvetica Normal';
}

@media (max-width: 575px) {
    #divLoginTitle {
        font-size: 24px;
    }
    #divLoginHeader img {
        margin: 10px;
        max-width: 200px;
    }
}
    #divLogin {
        position: relative;
        margin: none !important;
        width: 100%;
        max-width: 600px;
        margin-left: auto !important;
        margin-right: auto !important;
        z-index: 1000;
        /*background: url(/admin/images/bg/bg_gr_90.png);*/
        background-color: rgba(0, 0, 0, 0.9); /* Adjust the alpha value (0.5) for darkness */
        border-radius: 10px;
        padding: 20px 5px;
    }
@media (max-width: 575px) {
    #divLogin {
        padding: 10px 5px;
    }
}

.login-wrapper {
    position: relative;
    margin: none !important;
    width: 100%;
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
    z-index: 1000;
    /*background: url(/admin/images/bg/bg_gr_90.png);*/
    background-color: rgba(0, 0, 0, 0.9); /* Adjust the alpha value (0.5) for darkness */
    border-radius: 10px;
    padding: 20px 5px;
}

.login-container {
    display: flex;
    flex-direction: column; /* Stack items vertically by default */
    align-items: center; /* Center horizontally */
    width: 90%; /* Occupy 90% of the parent's width */
    max-width: 400px; /* Limit maximum width */
    margin: 20px auto; /* Center the container */
    padding: 20px;
}

.login-item {
    width: 100%; /* Make each item take full width of container */
    margin-bottom: 10px; /* Add spacing between items */
    display: flex;
    flex-direction: column;
}

.login-label {
    color: #fff;
    margin-bottom: 5px;
}

.login-input-group {
    display: flex;
    align-items: center;
    width: 100%;
}

.login-field {
    flex-grow: 1; /* Allow input to expand */
    padding: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
    color: #000000;
}

.login-button {
    margin-left: 5px;
    padding: 8px 12px;
    background-color: #90cb01;
    color: black;
    font-weight: 600 !important;
    border-radius: 3px;
    cursor: pointer;
}

.validation-summary {
    text-align: center;
    margin-top: 10px;
}

/* Media query for smaller screens */
@media (max-width: 430px) {
    .login-wrapper {
        padding: 10px 5px;
    }
    .login-container {
        width: 95%; /* Adjust width for smaller screens */
        padding: 10px;
    }
}    



    /*----------------------------------------------- FOOTER */
    #divLoginFooter {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 5px 20px;
        /*background: url(/admin/images/bg/bg_gr_75.png) repeat;*/
        background-color: rgba(0, 0, 0, 0.7); /* Adjust the alpha value (0.5) for darkness */
        font-size: 10px;
        color: #ccc;
        font-family: Arial, Helvetica, sans-serif;
    }

        #divLoginFooter a:link, #divLoginFooter a:visited {
            font-family: Arial, Helvetica, sans-serif;
            color: #fff;
            text-decoration: none;
        }

        #divLoginFooter a:hover {
            color: #ccc;
        }

        #divLoginFooter img {
            display: block;
            float: left;
            margin: 0px 10px
        }

    .CL {
        clear: both;
    }

    .MF {
        background-color: #074c7b;
        height: 3px;
        border-top: solid 1px #ffffff;
    }
    /*------------------------------------------------------------------------------------------ PROGRESS TEMPLATE */
