/* Reset dan base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1.6;
    position: relative;
    overflow: auto;
    margin: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: gentleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(-15px, 15px) scale(1.02);
        opacity: 0.6;
    }
    66% {
        transform: translate(15px, -15px) scale(0.98);
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(-20px, 20px) scale(1.05);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, -20px) scale(0.95);
        opacity: 1;
    }
    75% {
        transform: translate(-10px, -10px) scale(1.02);
        opacity: 0.7;
    }
}

.login-container {
    width: 100%;
    max-width: 1200px;
    animation: slideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: calc(100vh - 40px);
    padding: 20px;
    box-sizing: border-box;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    width: 100%;
    max-width: 95vw;
    height: calc(100vh - 40px);
    margin: 0;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe);
    background-size: 300% 100%;
    animation: rainbowFlow 6s linear infinite;
}

@keyframes rainbowFlow {
    0% { background-position: 0% 0; }
    100% { background-position: 300% 0; }
}

.left-section {
    flex: 1;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

.left-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.logo-section::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    border-radius: 2px;
    opacity: 0.7;
}

.logo {
    margin-bottom: 32px;
    display: inline-block;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo:hover {
    transform: translateY(-5px) scale(1.05);
}

.logo img {
    display: block;
    border-radius: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.logo-section h1 {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.logo-section p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.right-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.98);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow-y: auto;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
}

.right-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(248, 250, 252, 0.02) 100%);
    pointer-events: none;
}

/* Custom scrollbar untuk right-section */
.right-section::-webkit-scrollbar {
    width: 6px;
}

.right-section::-webkit-scrollbar-track {
    background: rgba(148, 163, 184, 0.1);
    border-radius: 3px;
}

.right-section::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 3px;
}

.right-section::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2, #f093fb);
}

.login-form {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 32px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0.9;
    z-index: 10;
    position: relative;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.input-wrapper:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.input-wrapper:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
    background: rgba(102, 126, 234, 0.1);
}

.input-icon {
    position: absolute;
    left: 20px;
    z-index: 1;
    pointer-events: none;
    color: #94a3b8;
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
}

.input-wrapper:focus-within .input-icon {
    color: #667eea;
    transform: scale(1.1);
}

.input-wrapper input {
    width: 100%;
    padding: 20px 56px 20px 56px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    outline: none;
    color: #1e293b;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-wrapper:focus-within input {
    color: #1e293b;
}

.input-wrapper input::placeholder {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 15px;
}

.input-wrapper input:focus {
    background: rgba(255, 255, 255, 0.95);
}

.password-toggle {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    outline: none;
}

.password-toggle:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    transform: scale(1.1);
}

.password-toggle:active {
    transform: scale(0.95);
}

.password-toggle svg {
    pointer-events: none;
    width: 20px;
    height: 20px;
}

.error-message {
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.9), rgba(254, 226, 226, 0.8));
    border: 2px solid rgba(252, 165, 165, 0.3);
    color: #dc2626;
    padding: 18px 24px;
    border-radius: 16px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.15);
    backdrop-filter: blur(10px);
}

.error-message svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.login-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border: none;
    padding: 20px 32px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow:
        0 12px 32px rgba(102, 126, 234, 0.4),
        0 6px 16px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-button:hover::before {
    left: 100%;
}

.login-button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 30%, #f5576c 70%, #4facfe 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 20px 48px rgba(102, 126, 234, 0.5),
        0 12px 24px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.login-button:active {
    transform: translateY(-2px) scale(0.98);
    transition-duration: 0.1s;
}

.login-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.login-button:hover svg {
    transform: translateX(4px);
}

.register-link {
    text-align: center;
    margin-bottom: 32px;
}

.register-link p {
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.register-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.register-link a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.register-link a:hover::after {
    width: 100%;
}

.register-link a:hover {
    color: #764ba2;
    transform: translateY(-1px);
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.9), rgba(220, 252, 231, 0.8));
    border: 2px solid rgba(187, 247, 208, 0.3);
    border-radius: 16px;
    font-size: 14px;
    color: #166534;
    margin-bottom: 28px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(22, 101, 52, 0.15);
    backdrop-filter: blur(10px);
}

.security-notice svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.copyright-notice {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.8));
    border-radius: 18px;
    border: 2px solid rgba(226, 232, 240, 0.3);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
}

.copyright-notice p {
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.4px;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 16px 40px rgba(102, 126, 234, 0.6);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow:
            0 12px 32px rgba(102, 126, 234, 0.4),
            0 6px 16px rgba(102, 126, 234, 0.2);
    }
    50% {
        box-shadow:
            0 16px 48px rgba(102, 126, 234, 0.6),
            0 8px 24px rgba(102, 126, 234, 0.4);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 0;
        overflow-x: hidden;
    }

    .login-container {
        max-width: 100%;
        padding: 20px;
        min-height: calc(100vh - 40px);
    }

    .login-card {
        flex-direction: column;
        padding: 0;
        border-radius: 24px;
        height: calc(100vh - 40px);
        max-width: 100%;
        margin: 0;
    }

    .left-section {
        padding: 40px 32px;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    }

    .right-section {
        padding: 40px 32px;
        background: rgba(255, 255, 255, 0.98);
        overflow-y: auto;
        height: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .logo-section {
        margin-bottom: 32px;
    }

    .logo {
        padding: 20px;
        margin-bottom: 24px;
    }

    .logo-section h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .logo-section p {
        font-size: 16px;
    }

    .input-wrapper input {
        padding: 18px 52px 18px 52px;
        font-size: 16px;
        max-width: 100%;
    }

    .input-icon {
        left: 18px;
    }

    .password-toggle {
        right: 18px;
    }

    .login-button {
        padding: 18px 28px;
        font-size: 14px;
        max-width: 100%;
    }

    .copyright-notice {
        padding: 20px;
        max-width: 100%;
    }

    .copyright-notice p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
        overflow-x: hidden;
    }

    .login-container {
        padding: 20px;
        min-height: calc(100vh - 40px);
    }

    .login-card {
        margin: 0;
        border-radius: 20px;
        max-width: 100%;
        height: calc(100vh - 40px);
    }

    .left-section {
        padding: 32px 20px;
        max-width: 100%;
    }

    .right-section {
        padding: 32px 20px;
        max-width: 100%;
        overflow-y: auto;
        height: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .logo-section h1 {
        font-size: 28px;
    }

    .logo-section p {
        font-size: 15px;
    }

    .input-wrapper input {
        padding: 16px 48px 16px 48px;
        font-size: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .input-icon {
        left: 16px;
        width: 18px;
        height: 18px;
    }

    .password-toggle {
        right: 16px;
    }

    .login-button {
        padding: 16px 24px;
        font-size: 13px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .copyright-notice {
        padding: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .copyright-notice p {
        font-size: 12px;
        word-wrap: break-word;
    }
}

/* Loading state */
.login-button.loading {
    pointer-events: none;
    opacity: 0.9;
    animation: pulse 2s infinite;
}

.login-button.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 12px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Focus states for accessibility */
.login-button:focus,
.input-wrapper input:focus,
.password-toggle:focus {
    outline: 2px solid #667eea;
    outline-offset: 3px;
}

.login-button:focus {
    animation: glow 2s infinite;
}

/* Advanced hover effects */
.logo:hover,
.input-wrapper:hover input,
.login-button:hover,
.register-link a:hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar (Webkit browsers) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2, #f093fb);
}

/* Print styles */
@media print {
    body {
        background: white !important;
    }

    .login-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .login-card {
        border: 3px solid #000;
    }

    .input-wrapper {
        border: 2px solid #000;
    }

    .login-button {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (future-proofing) */
@media (prefers-color-scheme: dark) {
    .login-card {
        background: rgba(15, 23, 42, 0.95);
        border: 1px solid rgba(148, 163, 184, 0.3);
    }

    .input-wrapper {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(51, 65, 85, 0.8));
        border-color: rgba(148, 163, 184, 0.4);
    }

    .input-wrapper input {
        color: #f1f5f9;
    }

    .input-wrapper input::placeholder {
        color: #94a3b8;
    }
}

/* Additional styles for register page */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.password-strength {
    margin-top: 8px;
}

.strength-meter {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 12px;
    color: #6b7280;
}

.password-match {
    margin-top: 8px;
    font-size: 12px;
    min-height: 16px;
}

/* Password strength colors */
.strength-weak .strength-bar {
    background: #ef4444;
    width: 33%;
}

.strength-medium .strength-bar {
    background: #f59e0b;
    width: 66%;
}

.strength-strong .strength-bar {
    background: #10b981;
    width: 100%;
}

/* Terms section */
.terms-section {
    margin-bottom: 24px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: relative;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #667eea;
    border-color: #667eea;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

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

.checkbox-container a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for form-row */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 640px) {
    .checkbox-container {
        font-size: 13px;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 20px 24px;
}

.modal-body ul {
    margin: 16px 0;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
    color: #4b5563;
}