body {
    font-family: 'SolaimanLipi', sans-serif;
    background-color: #f0f2f5;
}
body.login-active {
    overflow: hidden;
}
#login-page {
    height: 100vh;
}
.login-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}
.modal {
    display: none; /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
    z-index: 50;
}
.modal-content {
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
}
.modal.flex {
    display: flex;
}
.modal.flex .modal-content {
    transform: scale(1);
}
.tab-btn {
    transition: all 0.2s ease-in-out;
}
.tab-btn.active {
    background-color: #1D4ED8; /* bg-blue-700 */
    color: white;
    border-bottom-color: transparent;
}
.tab-btn:not(.active):hover {
    background-color: #e0e7ff;
}
.password-container {
    position: relative;
}
.password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #757575;
}
