/* Login-specific styles — shared base ada di shared-card.css */

/* ── TABS ── */
.tabs {
    display: flex;
    background: #f0f4f1;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
}
.tab-btn {
    flex: 1;
    padding: 9px 0;
    border: none;
    background: transparent;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7c74;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.tab-btn.active {
    background: #fff;
    color: #1b4332;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* ── BUTTON ── */
.btn-masuk {
    width: 100%;
    padding: 13px;
    background: #1b4332;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.18s, transform 0.1s;
    letter-spacing: 0.2px;
    margin-top: 4px;
}
.btn-masuk:hover:not(:disabled)  { background: #2d6a4f; }
.btn-masuk:active:not(:disabled) { transform: scale(0.98); }
.btn-masuk:disabled {
    background: #9dbfae;
    cursor: not-allowed;
}