.login-page, .register-page {
    background: url(../images/MS-BG.png) #d2d6de no-repeat center center;
    background-size: cover;  /* Ensures the image covers the entire container */
    background-attachment: fixed; /* Keeps the image fixed during scrolling */
    background-color: #d2d6de; /* Fallback color if image doesn't load */
    height: 100vh; /* Ensures the container takes full height of the viewport */
    width: 100%; /* Takes full width */
    margin: 0; 
    overflow: hidden;
}
.login-box{
    display: flex;
    flex-direction: column;    /* Stack children vertically */
    align-items: center;       /* Center content horizontally */
    text-align: center; 
}
.system-messages {
    width: 100%;               /* Take full width of the container */
    margin-bottom: 15px;       /* Add space below messages */
    color: red;                /* Customize text color */
    /*font-weight: bold;          Make messages stand out */
}
.login-box-body{
    width: 100%;
    max-width: 360px;

}
.second-back {
    /*background: url(../images/MS-logo.png) no-repeat center;*/
    height: 100%;
    width: 100%;
    background-size: 17% 100%;
}
.login-logo, .register-logo {
    font-size: 35px;
    text-align: center;
    margin-bottom: 100px;
    font-weight: 300;
}
.alert_error {
    color: red;
}
.lbl_error {
    background: #ab0000 none repeat scroll 0 0;
    border-radius: 11px;
    color: #fff;
    padding: 10px;
    width: 100%;
}
.lbl_success {
    background: green;
    border-radius: 11px;
    color: #fff;
    padding: 10px;
    width: 100%;
}
.btn.btn-block.btn-primary.add_new_btn {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    color: #000;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin-left: 15px;
    padding-top: 0;
    width: auto;
}
.reg_alert_error{
    color:red;
}

.dataTables_filter {
    float: left !important;
}

.fa.fa-info-circle {
    float: right;
}

section.content-header h1 a {
    padding: 0 0;
}

.error {
    color: red;
}
.txt-upper {
    text-transform: uppercase;
}
thead {
    background: #3c8dbc;
    color: #fff;
}

.content_div3 h3 {
    font-size: 20px;
}


.colu3 h2 {
    font-size: 20px;
}
.sixth_row hr {
    border-top: 1px solid #000;
}

.custom-pagination {
    margin: 20px 0;
    text-align: center;
    float: right;
}

/* Pagination Links */
.custom-pagination a {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: white;
    background-color: #3c8dbc;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 4px;
}

/* Current Page Link */
.custom-pagination .current {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: white;
    background-color: #03507c;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 4px;
}