/* --- Mantrigame/Mantrimalls custom styles --- */
.tab-content {
    background: #f2f2f2;
    min-height: 100vh;
    padding-bottom: 70px;
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}
.headerTab {
    background: #0288fa;
    color: #fff;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-radius: 8px 8px 0 0;
    min-height: 48px;
}
.back-btn {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}
.btn-back {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
.tab-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 0.5rem;
}
.login-div {
    background: #f2f2f2;
    padding: 2rem 0 0 0;
    min-height: 60vh;
}
.container-fluid {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.login-form {
    width: 100%;
}
.login-form-group {
    margin-bottom: 1.2rem;
}
.login-form-input {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
}
.login-form-input input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 1rem;
    margin-left: 0.5rem;
}
.material-icons {
    font-size: 1.3rem;
    color: #888;
}
.password-key-holder img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}
.login-form-submit {
    text-align: center;
    margin: 1.5rem 0 1rem 0;
}
.btn-submit {
    background: #0288fa;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit:hover {
    background: #0270c7;
}
.helper-btns-div {
    display: flex;
    justify-content: space-between;
    margin: 2.5rem 0 0 0;
}
.btn-register, .btn-forget-password {
    background: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.7rem 2.2rem;
    font-size: 1.1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: background 0.2s;
}
.btn-register a {
    color: #222 !important;
    text-decoration: none;
}
.btn-register:hover, .btn-forget-password:hover {
    background: #f0f0f0;
}
.nav-tabs {
    display: flex;
    justify-content: space-around;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
    padding: 0.3rem 0;
}
.footerTab-images {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footerTab-images img {
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
}
.footerTab-txt {
    font-size: 0.85rem;
    color: #888;
}
.nav-link.active .footerTab-txt {
    color: #0288fa !important;
    font-weight: 600;
}
@media (max-width: 600px) {
    .container-fluid {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .login-div {
        padding: 1rem 0 0 0;
    }
    .helper-btns-div {
        flex-direction: column;
        gap: 1rem;
    }
}
:root {
    --primary-color: #007bff;
    --background-color: #f4f7f6;
    --text-color: #333;
    --container-bg: #ffffff;
    --footer-bg: #ffffff;
    --input-bg: #f0f0f0;
    --button-text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.container {
    background-color: var(--container-bg);
    margin: auto;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header {
    margin-bottom: 2rem;
}

.header .logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.header p {
    color: #777;
}

.input-group {
    display: flex;
    align-items: center;
    background-color: var(--input-bg);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.input-group img {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    opacity: 0.6;
}

.input-group input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 1rem;
}

.submit button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: var(--button-text-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit button:hover {
    background-color: #0056b3;
}

.footer-links {
    margin-top: 2rem;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    background-color: var(--footer-bg);
    padding: 0.5rem 0;
    border-top: 1px solid #e0e0e0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #999;
}

.nav-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 0.75rem;
}

.nav-item.active {
    color: var(--primary-color);
}
