/*
|--------------------------------------------------------------------------
| GLOBAL RESET
|--------------------------------------------------------------------------
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    font-family: 'Inter', sans-serif;
    background: #f4f7fb;
    color: #0f172a;
}

body {
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
}

.main-content {
    flex: 1;
}

/*
|--------------------------------------------------------------------------
| GLOBAL HEADER
|--------------------------------------------------------------------------
*/

.global-header {
    width: 100%;
    padding: 30px 30px 0;
    position: relative;
    z-index: 9999;
}

.global-header-inner {
    max-width: 1500px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

/*
|--------------------------------------------------------------------------
| MAIN NAVIGATION
|--------------------------------------------------------------------------
*/

.dashboard-nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dashboard-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s ease;
    white-space: nowrap;
}

.dashboard-nav-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.dashboard-nav-btn.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/*
|--------------------------------------------------------------------------
| DROPDOWNS
|--------------------------------------------------------------------------
*/

.dashboard-dropdown {
    position: relative;
    display: inline-flex;
}

.dashboard-dropdown-btn {
    cursor: pointer;
}

.dashboard-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 14px;
}

.dashboard-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 250px;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 45px rgba(0,0,0,0.16);
    display: none;
    z-index: 99999;
}

.dashboard-dropdown:hover .dashboard-dropdown-menu,
.dashboard-dropdown:focus-within .dashboard-dropdown-menu {
    display: block;
}

.dashboard-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s ease;
    white-space: nowrap;
    margin-bottom: 8px;
}

.dashboard-dropdown-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.dashboard-dropdown-item:last-child {
    margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| SUB DROPDOWN
|--------------------------------------------------------------------------
*/

.dashboard-sub-dropdown {
    position: relative;
}

.dashboard-sub-dropdown-btn {
    justify-content: space-between;
}

.dashboard-sub-dropdown-btn::after {
    content: '›';
    margin-left: auto;
    color: #64748b;
    font-size: 16px;
    font-weight: 900;
}

.dashboard-sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: calc(100% + 10px);
    min-width: 230px;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 45px rgba(0,0,0,0.16);
    display: none;
    z-index: 999999;
}

.dashboard-sub-dropdown:hover .dashboard-sub-dropdown-menu,
.dashboard-sub-dropdown:focus-within .dashboard-sub-dropdown-menu {
    display: block;
}

/*
|--------------------------------------------------------------------------
| BREADCRUMBS
|--------------------------------------------------------------------------
*/

.global-breadcrumb-bar {
    width: 100%;
    padding: 24px 30px 0;
}

.global-breadcrumb-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.dashboard-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}

.dashboard-breadcrumbs span {
    color: #64748b;
}

.breadcrumb-separator {
    color: #94a3b8;
}

.breadcrumb-active {
    color: #2563eb !important;
}

/*
|--------------------------------------------------------------------------
| DASHBOARD LAYOUT
|--------------------------------------------------------------------------
*/

.dashboard-login-style {
    padding: 30px;
}

.dashboard-card {
    max-width: 1500px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.dashboard-top h1 {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 900;
    letter-spacing: -1px;
}

.dashboard-top p {
    max-width: 760px;
    color: #64748b;
    line-height: 1.7;
}

.dashboard-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dashboard-user-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.dashboard-user-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-user-text span {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.dashboard-user-text strong {
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
}

.dashboard-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    background: #eef2ff;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid #c7d2fe;
}

.dashboard-logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    background: #dc2626;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s ease;
}

.dashboard-logout-btn:hover {
    background: #b91c1c;
}

/*
|--------------------------------------------------------------------------
| STAT CARDS
|--------------------------------------------------------------------------
*/

.dashboard-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.dashboard-stat-box {
    background: #f8fafc;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.dashboard-stat-box span {
    display: block;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.dashboard-stat-box strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.dashboard-stat-box small {
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-size: 13px;
}

.primary-box {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    border: none;
}

.primary-box span,
.primary-box strong,
.primary-box small {
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| CONTENT GRID
|--------------------------------------------------------------------------
*/

.dashboard-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dashboard-panel {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    padding: 24px;
}

.panel-header {
    margin-bottom: 20px;
}

.panel-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #0f172a;
}

.panel-header p {
    color: #64748b;
}

/*
|--------------------------------------------------------------------------
| FORMS
|--------------------------------------------------------------------------
*/

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #dbe2ea;
    background: #f8fafc;
    font-size: 15px;
    font-family: inherit;
    transition: 0.2s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.btn-primary {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

/*
|--------------------------------------------------------------------------
| ALERTS
|--------------------------------------------------------------------------
*/

.alert-error {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-size: 14px;
    font-weight: 700;
	text-align: center;
}

.alert-success {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 14px;
    font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| TABLES
|--------------------------------------------------------------------------
*/

.dashboard-table-wrap {
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th {
    text-align: left;
    padding: 14px 12px;
    background: #f8fafc;
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

.dashboard-table tr:hover td {
    background: #f8fafc;
}

.table-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 800;
}

.table-edit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    background: #0f172a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    transition: 0.2s ease;
}

.table-edit-btn:hover {
    background: #1e293b;
}

.dashboard-empty {
    padding: 30px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    text-align: center;
}

/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.site-footer {
    margin-top: 50px;
    padding: 28px 34px;
    background: linear-gradient(135deg, #0f172a, #111827);
}

.site-footer,
.site-footer p,
.site-footer span,
.site-footer small,
.site-footer div,
.site-footer strong {
    color: #ffffff;
}

.site-footer .footer-tagline {
    color: rgba(255,255,255,0.78);
}

.footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.footer-tagline {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 1200px) {

    .dashboard-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-content-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 900px) {

    .global-header {
        padding: 16px 16px 0;
    }

    .global-header-inner {
        padding: 18px;
        border-radius: 24px;
    }

    .dashboard-nav-left {
        width: 100%;
    }

    .dashboard-nav-btn {
        width: 100%;
        justify-content: flex-start;
    }

    .dashboard-dropdown {
        width: 100%;
        display: block;
    }

    .dashboard-dropdown-menu {
        position: relative;
        top: 10px;
        left: 0;
        width: 100%;
        margin-bottom: 12px;
    }

    .dashboard-sub-dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-top: 10px;
    }

    .dashboard-top {
        flex-direction: column;
    }

    .dashboard-top h1 {
        font-size: 32px;
    }

    .dashboard-top-right {
        width: 100%;
        justify-content: flex-start;
    }

    .dashboard-user-box {
        width: 100%;
    }

}

@media (max-width: 760px) {

    .dashboard-login-style {
        padding: 16px;
    }

    .dashboard-card {
        padding: 24px;
        border-radius: 24px;
    }

    .dashboard-stat-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
    }

}

.table-delete-btn {
    border: none;
    background: #dc2626;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.table-delete-btn:hover {
    background: #b91c1c;
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.site-header {
    width: 100%;
    margin-bottom: 24px;
}

.header-inner {
    background: #1e293b;
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.header-user-info {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.main-nav > a,
.nav-dropdown-btn {
    background: #334155;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-nav > a:hover,
.nav-dropdown-btn:hover,
.main-nav > a.active,
.nav-dropdown-btn.active {
    background: #475569;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #1e293b;
    border-radius: 14px;
    min-width: 220px;
    padding: 10px;
    display: none;
    flex-direction: column;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
}

.nav-dropdown-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: #334155;
}

/*
|--------------------------------------------------------------------------
| Red Logout Button
|--------------------------------------------------------------------------
*/

.header-logout-btn {
    background: #dc2626;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-logout-btn:hover {
    background: #b91c1c;
}

.header-with-logout {
    display: flex;
    align-items: center;
    width: 100%;
}

.dashboard-nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.header-logout-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* LOGIN PAGE */

.login-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #f4f7fb;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 460px;
    padding: 24px;
}

.login-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    border: 1px solid #e2e8f0;
}

.login-card h1 {
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
}

.login-card p {
    margin-bottom: 28px;
    color: #64748b;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #dbe2ea;
    background: #f8fafc;
    font-size: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: #0f172a;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.10);
}

.btn-primary {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 14px;
    background: #0f172a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1e293b;
}

.alert-error {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-size: 14px;
    font-weight: 700;
}

/* =========================================
   FORGOT PASSWORD PAGE
========================================= */

.login-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #f4f7fb;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 460px;
    padding: 24px;
}

.login-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    border: 1px solid #e2e8f0;
}

.login-card h1 {
    margin: 0 0 12px;
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
}

.login-card p {
    margin: 0 0 28px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #dbe2ea;
    background: #f8fafc;
    color: #0f172a;
    font-size: 15px;
    font-family: inherit;
    transition: 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #0f172a;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.10);
}

.btn-primary {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 14px;
    background: #0f172a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.alert-success {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 14px;
    font-weight: 700;
}

.alert-error {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-size: 14px;
    font-weight: 700;
}

.login-footer-links {
    margin-top: 24px;
    text-align: center;
}

.login-footer-links a {
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.login-footer-links a:hover {
    text-decoration: underline;
}

/* FORGOT PASSWORD - ISOLATED STYLES */

body.forgot-password-page {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh !important;
    background: #f4f7fb !important;
    font-family: 'Inter', Arial, sans-serif !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.forgot-password-container {
    width: 100% !important;
    max-width: 460px !important;
    padding: 24px !important;
}

.forgot-password-card {
    background: #ffffff !important;
    border-radius: 28px !important;
    padding: 40px !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10) !important;
    border: 1px solid #e2e8f0 !important;
}

.forgot-password-card h1 {
    margin: 0 0 12px !important;
    font-size: 34px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
}

.forgot-password-card p {
    margin: 0 0 28px !important;
    color: #64748b !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.forgot-password-form-group {
    margin-bottom: 22px !important;
}

.forgot-password-form-group label {
    display: block !important;
    margin-bottom: 8px !important;
    color: #0f172a !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.forgot-password-form-group input {
    width: 100% !important;
    min-height: 52px !important;
    padding: 12px 16px !important;
    border-radius: 14px !important;
    border: 1px solid #dbe2ea !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    font-size: 15px !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
}

.forgot-password-form-group input:focus {
    outline: none !important;
    border-color: #0f172a !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.10) !important;
}

.forgot-password-btn {
    width: 100% !important;
    min-height: 54px !important;
    border: none !important;
    border-radius: 14px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    font-family: inherit !important;
    cursor: pointer !important;
}

.forgot-password-btn:hover {
    background: #1e293b !important;
}

.forgot-password-links {
    margin-top: 24px !important;
    text-align: center !important;
}

.forgot-password-links a {
    color: #0f172a !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.forgot-password-links a:hover {
    text-decoration: underline !important;
}