.auth-wrapper {
    min-height: 87vh;
    /* Full screen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical center */
    /* align-items: center; */
    /* Horizontal center */
    /* text-align: center; */
    /* Center text */
    /* padding: 20px; */
}

.margin-top-70 {
    margin-top: 70px !important;
}

.beautified-banner {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e7e7e7;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
    position: relative;
}


/* Smooth hover glow */

.beautified-banner:hover {
    box-shadow: 0px 14px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);
}


/* Optional subtle overlay */

.beautified-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.0));
    pointer-events: none;
}

.beautified-banner img {
    border-radius: 20px;
}

.followup-card {
    border-radius: 12px;
}

.followup-card .btn {
    min-width: 36px;
    min-height: 36px;
}

.followup-card .badge {
    font-size: 11px;
}

.lead-action-row {
    display: flex;
    gap: 10px;
    margin: 12px 0;
}

.lead-action-row .action-btn {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

.empty-state {
    min-height: 70vh;
    /* Centers vertically */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.empty-icon {
    font-size: 70px;
    /* Bigger icon */
    color: #adb5bd;
}