body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Header Styles */
.main-header {
    background-color: #2e7594;/*rgba(0, 0, 0, 0.8);*/
    padding: 0.3rem 0;
    position: relative;
    z-index: 100;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 15px;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    text-transform: uppercase;
}

.company-slogan {
    font-size: 1.3rem;
    color: #ffd246;/*rgba(255, 255, 255, 0.7);*/
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    transition: all 0.3s;
    border-radius: 4px;
}

.nav-link:hover, .nav-link:focus {
    color: white;
    background-color: #f4731c;/*rgba(255, 255, 255, 0.1);*/
}

/* Background styles */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

ul.contactlst {
    list-style: none;
    padding:0px;
}

/* Login container styles */
.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:20px 10px;
    /*margin-top: 80px;   Added margin to account for header */
}

.login-card {
    width: 100%;
    max-width: 450px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-header {
    background: linear-gradient(135deg, #25525E 0%, #3AA89E 100%);/*linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);*/
    color: white;
    padding: 0.5rem;
    text-align: center;
}
/*linear-gradient(135deg, #11998e 0%, #38ef7d 100%)*/
.login-header h2 {
    font-size: 1.5rem;
}

.login-body {
    padding: 1rem 2rem;
}

.form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #379a94;
    box-shadow: 0 0 0 0.02rem #379a94;/*rgba(106, 17, 203, 0.25)*/;
}

.btn-login {
    background: linear-gradient(135deg, #C45C16 0%, #F4731C 50%, #FF9D4D 100%);
    border: none;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer styles */
.footer_not_in_use {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2e7594;
    color: white;
    padding-top:0.3rem;
    width: 100%;
    z-index: 1000; /* Ensures footer stays above other content */
}
.footer {
    background-color: #2e7594;
    color: white;
    /*padding: 0.3rem 0;*/
    padding-top: 0.4rem;
    padding-bottom: 0.6rem;
    width: 100%;
}
.footer ul.contactlst, .footer address {
    margin-bottom:0px;
}
.footer ul.contactlst i, .footer address i {
    color:#f57822;
}
.footer address i {
    font-size:1.1rem;
}
.footer .copyright {
    font-size:1.2rem;
    font-weight: 600;
}
.footer a {
    color: #ddd;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
    text-decoration: none;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.2rem;
}
.followustxt {
    font-size:1.25rem;
}
.alert{padding:12px 12px 12px 48px;}
.alert-success{background: url(../images/successmsg.jpg) no-repeat 0.4em center #d3fdcd;}
.alert-danger{background: url(../images/errormsg.jpg) no-repeat 0.4em center #fed2d3;}
.alert-info{background: url(../images/noticemsg.jpg) no-repeat 0.4em center #d8effd;}
.alert-warning{background: url(../images/warningmsg.jpg) no-repeat 0.4em center #fefccb;}

/* Form validation */
.parsley-error {
  border-color: #ac2708 !important;
}
.parsley-errors-list {
  display: none;
  margin: 0;
  padding: 0;
  width:100%;
}
.parsley-errors-list.filled {
  display: block;
}
.parsley-errors-list > li {
  font-size: 12px;
  list-style: none;
  color: #ac2708;
  margin-top: 2px;
  padding-left:41px;
}