/* ==========================================================================
   VAULT SECURE PASSWORD SAVER - CORE STYLING
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-color: #060708;
    --text-color: #f3f4f6;
    --text-muted: #8c939d;
    --accent-color: #d2ff00; /* Neon Lime Accent */
    --accent-hover: #bce600;
    --accent-glow: rgba(210, 255, 0, 0.15);
    
    --card-bg: rgba(13, 15, 17, 0.7);
    --card-border: rgba(255, 255, 255, 0.04);
    --card-border-active: rgba(210, 255, 0, 0.3);
    
    --input-bg: rgba(0, 0, 0, 0.3);
    --input-border: rgba(255, 255, 255, 0.08);
    
    --error-color: #ff3b30;
    --success-color: #34c759;
}

/* Global Reset & Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Dark grid pattern inspired by the design */
    background-image: 
        linear-gradient(rgba(210, 255, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(210, 255, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
}

/* Glowing Background Blobs */
.glow-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.glow-bg-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.45;
}

.glow-blob-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
}

.glow-blob-2 {
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
}

/* Container */
.app-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    z-index: 10;
}

/* Typography & Helpers */
.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

/* Glassmorphism Panel base */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   AUTHENTICATION VIEW STYLES
   ========================================================================== */

.auth-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.auth-brand {
    text-align: center;
    margin-bottom: 30px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.brand-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    filter: drop-shadow(0 0 8px var(--accent-color));
}

.brand-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 300;
}

.auth-card {
    width: 100%;
    padding: 35px;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 30px;
    gap: 15px;
}

.auth-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 600;
    padding-bottom: 12px;
    cursor: pointer;
    position: relative;
    font-family: inherit;
    transition: color 0.3s ease;
}

.auth-tab-btn:hover {
    color: #ffffff;
}

.auth-tab-btn.active {
    color: var(--accent-color);
}

.auth-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: slideUp 0.4s ease-out;
}

/* Forms general styling */
.form-group {
    margin-bottom: 22px;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: color 0.3s ease;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 12px rgba(210, 255, 0, 0.12);
}

input[type="text"]:focus + .input-icon,
input[type="email"]:focus + .input-icon,
input[type="password"]:focus + .input-icon {
    color: var(--accent-color);
}

.pwd-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
}

.pwd-toggle:hover {
    color: #ffffff;
}

.pwd-toggle svg {
    width: 18px;
    height: 18px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.88rem;
}

/* Custom Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    color: var(--text-muted);
    text-transform: none;
    font-size: 0.88rem;
    font-weight: 400;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--text-muted);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(210, 255, 0, 0.4);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #080a0b;
    border: 1px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(210, 255, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 255, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-danger {
    background: rgba(255, 59, 48, 0.1);
    color: var(--error-color);
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.btn-danger:hover {
    background: var(--error-color);
    color: #ffffff;
    border-color: var(--error-color);
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.25);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   DASHBOARD STYLES
   ========================================================================== */

.dashboard-wrapper {
    animation: fadeIn 0.8s ease-out;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    margin-bottom: 24px;
    width: 100%;
}

.dashboard-header .brand-logo {
    font-size: 1.5rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-greeting {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Dashboard Controls */
.controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    margin-bottom: 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.search-form input {
    width: 100%;
    padding: 12px 40px 12px 46px;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(210, 255, 0, 0.1);
}

.clear-search {
    position: absolute;
    right: 16px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.clear-search:hover {
    color: #ffffff;
}

.clear-search svg {
    width: 16px;
    height: 16px;
}

.stats-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.stats-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
}

.search-indicator {
    display: flex;
    justify-content: space-between;
    padding: 0 10px 15px 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.search-indicator a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.search-indicator a:hover {
    text-decoration: underline;
}

/* Password Cards Grid */
.passwords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.password-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

/* Glowing Border on hover */
.password-card:hover {
    border-color: var(--card-border-active);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 255, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--accent-color);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(210, 255, 0, 0.25);
}

.project-details {
    display: flex;
    flex-direction: column;
}

.project-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.project-url {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    transition: color 0.2s ease;
}

.project-url:hover {
    color: var(--accent-color);
}

.project-url svg {
    width: 10px;
    height: 10px;
}

.project-url-empty {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 4px;
}

.card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.card-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.field-value-wrapper {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 2px;
}

.field-value {
    flex: 1;
    background: transparent !important;
    border: none !important;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 8px 12px !important;
    font-family: inherit;
    box-shadow: none !important;
}

.field-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.field-btn:hover {
    color: var(--accent-color);
    background-color: rgba(210, 255, 0, 0.05);
}

.field-btn svg {
    width: 15px;
    height: 15px;
}

.copy-success {
    color: var(--success-color) !important;
    background-color: rgba(52, 199, 89, 0.08) !important;
}

.card-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    margin: 40px auto;
}

.empty-icon {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.6;
}

.empty-state h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* ==========================================================================
   MODAL DIALOGS STYLES
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 6, 7, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 90%;
    max-width: 500px;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-form .form-group:last-of-type {
    margin-bottom: 30px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Custom Confirmation Modal styling */
.modal-confirm {
    max-width: 420px;
    text-align: center;
}

.modal-confirm .modal-header {
    justify-content: center;
    margin-bottom: 15px;
}

.modal-confirm .modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.confirm-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.warning-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 59, 48, 0.1);
    color: var(--error-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.warning-icon {
    width: 30px;
    height: 30px;
}

.confirm-body p {
    font-size: 0.98rem;
    line-height: 1.5;
}

.warning-text {
    color: var(--error-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirm-footer {
    width: 100%;
    justify-content: center;
    gap: 15px;
}

.confirm-footer .btn {
    flex: 1;
}

/* ==========================================================================
   TOAST NOTIFICATION STYLES
   ========================================================================== */

.toast {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 2000;
    min-width: 320px;
    max-width: 400px;
    padding: 16px 20px;
    background: rgba(13, 15, 17, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    animation: slideInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-success {
    border-left: 4px solid var(--success-color);
}

.toast-error {
    border-left: 4px solid var(--error-color);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    width: 20px;
    height: 20px;
}

.toast-success .toast-icon {
    color: var(--success-color);
}

.toast-error .toast-icon {
    color: var(--error-color);
}

.toast-message {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 2px;
    line-height: 1;
}

.toast-close:hover {
    color: #ffffff;
}

.toast-fade-out {
    animation: fadeOut 0.5s ease forwards;
}

/* ==========================================================================
   CSS ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 768px) {
    body {
        background-size: 30px 30px;
    }
    
    .glow-bg-blob {
        width: 300px;
        height: 300px;
        filter: blur(80px);
    }

    .app-container {
        padding: 10px;
    }

    .auth-card {
        padding: 24px;
    }
    
    .dashboard-header {
        padding: 16px 20px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .controls-bar {
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: none;
    }
    
    .stats-counter {
        justify-content: center;
    }

    .passwords-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .toast {
        top: 20px;
        right: 10px;
        left: 10px;
    }
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #ffffff;
}

.default-credentials-badge {
    margin-top: 25px;
    padding: 12px 16px;
    background: rgba(210, 255, 0, 0.03);
    border: 1px dashed rgba(210, 255, 0, 0.15);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.default-credentials-badge strong {
    color: var(--accent-color);
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* ==========================================================================
   MULTIPLE CREDENTIALS DESIGN
   ========================================================================== */

.project-settings-btns {
    display: flex;
    gap: 6px;
}

.project-settings-btns button {
    padding: 6px;
}

.project-settings-btns button:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.delete-proj-btn:hover {
    color: var(--error-color) !important;
    background-color: rgba(255, 59, 48, 0.1) !important;
}

.credentials-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 5px;
}

.credential-row {
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.credential-row:hover {
    border-color: rgba(210, 255, 0, 0.08);
    background: rgba(0, 0, 0, 0.25);
}

.credential-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.credential-title-badge {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(210, 255, 0, 0.06);
    color: var(--accent-color);
    border: 1px solid rgba(210, 255, 0, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.credential-row-actions {
    display: flex;
    gap: 4px;
}

.credential-row-actions .field-btn {
    padding: 4px;
}

.credential-row-actions .field-btn svg {
    width: 12px;
    height: 12px;
}

.delete-cred-btn:hover {
    color: var(--error-color) !important;
    background-color: rgba(255, 59, 48, 0.1) !important;
}

.cred-input-icon {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    margin-left: 12px;
    margin-right: -4px;
    pointer-events: none;
}

.no-credentials-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 10px 0;
    font-style: italic;
}

.card-footer-custom {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 6px;
    margin: 24px 0 16px 0;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.forgot-pwd-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-pwd-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.auth-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}
