.top-bar {
    background-color: #effcf3;
    /* Green background */
    height: 38px;
    /* Adjust height as per your design */
    width: 100%;
}

.header {
    background-color: #effcf3;
    padding: 10px 0;
    height: 75px;
    /* border-bottom: 1px solid #ddd; */
}

.logo {
    max-height: 60px;
    /* Adjust logo size */
}

.forgot_pass {
    color: #28a745;
    /* Dark green text */
    text-decoration: none;
}

.forgot_pass:hover {
    color: #28a745;
    /* Dark green text */
    text-decoration: underline;
}

.register-link {
    font-weight: bold;
    color: #006400;
    /* Dark green text */
    text-decoration: none;
}

.register-link:hover {
    color: #004d00;
}

.login-container {
    margin: 50px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-form {
    padding: 0 0 0 30px;
}

.login-form .form-control {
    margin-bottom: 15px;
}

.brand-logo {
    height: 38px;
}

.brand-logo-new {
    position: absolute;
    width: 147px;
    top: 0;
}

.fancy {
    text-align: center;
    position: relative;
    margin: 18px 0;
}

.fancy span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.fancy::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
}

@media (max-width: 575.98px) {
    .login-form {
        margin-top: 1em !important;
        padding: 0;
    }
}

/* Additional styles for consumer dashboard */
.profile-dropdown .btn {
    transition: transform 0.2s, box-shadow 0.2s;
}

.profile-dropdown .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.profile-dropdown .dropdown-menu {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Optional: smooth fade-in using animate.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease-in-out;
}

.card-header.bg-gradient {
  background: linear-gradient(90deg, #28a745, #198754);
}

.nav-pills .nav-link.active {
  background-color: #28a745;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-pills .nav-link:hover {
  background-color: #198754;
  color: white;
}
