.jquery-valid-error {
    color: red;
    font-size: 12px;
}

html, body {
    background-color: #f1f8f9;
    color: #333;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.container-flex {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.full-height {
    flex: 1; /* Grow to fill remaining space */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.content {
    padding: 20px;
    max-width: 800px;
    text-align: center;
}

.title {
    font-size: 32px;
    color: #004d99; /* Dark blue for the title */
    margin-bottom: 30px;
    font-weight: 600;
}

.description {
    font-size: 24px;
    color: #006699; /* Slightly lighter blue */
    margin-bottom: 30px;
}

.message {
    font-size: 18px;
    margin-top: 20px;
    color: #333; /* Darker text for readability */
}

.contact-info {
    font-size: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc; /* Light gray border */
    color: #666; /* Lighter text color */
}

.contact-info p {
    margin: 0;
}

.navbar-custom {
    background-color: #2c3e50; /* Custom dark color */
    height: 70px; /* Thicker navbar */
    padding: 15px 0; /* Padding for thicker appearance */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #ecf0f1; /* Light text color */
    font-size: 12px;
    font-weight: 400; 
}

.navbar-custom .navbar-brand:hover,
.navbar-custom .nav-link:hover {
    color: #bdc3c7; /* Lighter hover effect */
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 5px; /* Optional rounded corners */
}

.navbar-custom .nav-link {
    color: #ecf0f1; /* Light text color */
    font-size: 12px;
    font-weight: 400; 
    text-decoration: none; /* Ensure no underline */
    padding: 8px 15px; /* Add consistent padding */
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-custom .dropdown-menu {
    background-color: #2c3e50; /* Match navbar theme */
    border: none; /* Remove border if it exists */
    border-radius: 5px; /* Optional rounding */
    padding: 0; /* Reduce padding for a cleaner look */
}

.navbar-custom .dropdown-item {
    color: #ecf0f1; /* Light text */
    padding: 10px 20px; /* Add padding for better click area */
    transition: background-color 0.3s ease;
}

.navbar-custom .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Match hover effect with nav links */
    color: #bdc3c7; /* Match hover text color */
}

@media screen and (max-width: 767px) {
    .navbar-custom-theme {
        position: absolute;
        text-align: center;
        top: 50px;
        right: 0;
        left: 0;
        margin: 0 10px;
        background-color: #2e4965;
        width: calc(100% - 20px);
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        z-index: 1050;
        /* padding: 10px 0; */
    }
}


/* footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 10px 0;
} */

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 18px 0;
    font-size: 12px;
    margin-top: auto; /* Ensures the footer sticks at the bottom */
}

.banner img {
    display: block;
    width: 100%;
    height: auto; /* Image height adjusts automatically */
}

.banner-overlay {
    /* background-color: rgba(0, 0, 0, 0.5); Dark overlay for text readability */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay h1 {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
}

.content-size{
    font-size: 16px;
}

/* .logo {
    width: 150px;
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 100px;
    }
} */

/* registration form tabs */
.ui-tabs-nav li {
    white-space:wrap !important;
}

.unfocus:hover,
.unfocus:focus {
    outline: none !important;
    box-shadow: none !important;
}




#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .spinner {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }
  
.display-none{
    display: none !important;
}