        /* Base style for the entire section */
        .account-section {
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            color: #112116;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: -100px;
            padding: 1rem;
        }

        .account-main-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .account-second-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        /* Core Auth Container */
        .account-auth-container {
            width: 100%;
            max-width: 64rem;
            display: grid;
            grid-template-columns: 1fr;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 15px 30px -8px rgba(1, 152, 99, 0.1);
        }

        @media (min-width: 768px) {
            .account-auth-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .account-image-section {
            background-size: cover;
            background-position: center;
            min-height: 300px;
            animation: account-fadeIn 1s ease-in forwards;
        }

        @media (max-width: 767px) {
            .account-image-section {
                display: none;
            }
        }

        .account-form-section {
            background-color: #ffffff;
            padding: 2.5rem;
            animation: account-fadeInUp 0.7s ease-out forwards;
        }

        .account-tab-container {
            display: flex;
            border-bottom: 1px solid rgba(1, 152, 99, 0.2);
            margin-bottom: 1.5rem;
        }

        .account-tab-button {
            flex: 1;
            padding: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            font-size: 0.9rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            color: #6b7280;
            border-bottom: 2px solid transparent;
        }

        .account-tab-button:hover {
            color: #019863;
        }

        .account-tab-button.active-tab {
            border-bottom-color: #019863;
            color: #019863;
        }

        .account-form-content {
            animation: account-fadeInUp 0.5s ease-out forwards;
        }

        .account-space-y-6>*+* {
            margin-top: 1rem;
        }

        .account-form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 0.3rem;
        }

        .account-form-group input {
            width: 100%;
            padding: 0.6rem 0.8rem;
            background-color: rgba(1, 152, 99, 0.1);
            border: none;
            border-radius: 0.4rem;
            color: #112116;
            transition: all 0.2s;
            font-size: 0.9rem;
        }

        .account-form-group input::placeholder {
            color: #94a3b8;
            font-size: 0.85rem;
        }

        .account-form-group input:focus {
            outline: none;
            box-shadow: 0 0 0 1px #019863;
        }

        .account-btn {
            width: 100%;
            padding: 0.6rem 0.8rem;
            background-color: #019863;
            color: #f5f8f7;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            border-radius: 0.4rem;
            cursor: pointer;
            transition: opacity 0.3s;
        }


        .account-btn:hover {
            opacity: 0.9;
        }

        .account-hidden {
            display: none !important;
        }

        .account-text-right {
            text-align: right;
        }

        .account-text-center {
            text-align: center;
        }

        .account-text-sm {
            font-size: 0.75rem;
        }

        .account-text-primary {
            color: #019863;
        }

        .account-font-bold {
            font-weight: 700;
        }

        .account-hover-underline:hover {
            text-decoration: underline;
        }

        /* Dashboard specific styles */
        .account-dashboard-container {
            padding: 1.5rem;
            max-width: 64rem;
            margin: 0 auto;
        }

        .account-dashboard-header {
            margin-bottom: 2rem;
        }

        .account-dashboard-header h2 {
            font-family: 'Sora', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: #112116;
            margin: 0;
        }

        .account-dashboard-header .account-text-gray {
            color: #4b5563;
            font-size: 0.9rem;
            margin-top: 0.4rem;
        }

        .account-dashboard-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(1, 1fr);
        }

        @media (min-width: 768px) {
            .account-dashboard-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .account-dashboard-card {
            background-color: #ffffff;
            border-radius: 0.75rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
            padding: 1.25rem;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .account-dashboard-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
        }

        .account-dashboard-card .account-image-container {
            flex-shrink: 0;
            width: 45%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .account-dashboard-card .account-image-container img {
            width: 150px;
            height: 150px;
            object-fit: contain;
            border-radius: 0.4rem;
        }

        .account-dashboard-card .account-content {
            flex-grow: 1;
        }

        .account-dashboard-card .account-tag {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            color: #019863;
            letter-spacing: 0.04em;
        }

        .account-dashboard-card h3 {
            font-family: 'Sora', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0.4rem 0;
        }

        .account-dashboard-card p {
            font-size: 0.8rem;
            color: #4b5563;
            margin: 0;
        }

        .account-dashboard-card .account-btn {
            width: auto;
            margin-top: 0.8rem;
            padding: 0.4rem 1rem;
            font-size: 0.85rem;
        }

        .account-profile-card {
            display: flex;
            flex-direction: column;
            background-color: #ffffff;
            border-radius: 1rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
            padding: 2rem;
            gap: 1.5rem;
            margin-top: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        @media (min-width: 768px) {
            .account-profile-card {
                flex-direction: row;
            }
        }

        .account-profile-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
        }

        .account-profile-card .account-image-container {
            width: 100%;
            height: 180px;
            flex-shrink: 0;
            border-radius: 0.75rem;
            overflow: hidden;
            background-color: #e0e0e0;
        }

        @media (min-width: 768px) {
            .account-profile-card .account-image-container {
                width: 250px;
            }
        }

        .account-profile-card .account-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .account-profile-card .account-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .account-profile-card .account-content h3 {
            font-family: 'Sora', sans-serif;
            font-size: 1.75rem;
            font-weight: 600;
            margin: 0 0 0.4rem 0;
        }

        .account-profile-card .account-content p {
            font-size: 0.9rem;
            color: #4b5563;
            margin: 0;
        }

        .account-btn-profile {
            width: auto;
            padding: 0.6rem 1.2rem;
            margin-top: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 600;
            font-size: 0.9rem;
            background-color: #019863;
            color: #f5f8f7;
            border: none;
            border-radius: 0.4rem;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .account-btn-profile:hover {
            opacity: 0.9;
        }

        .account-btn-profile a {
            color: inherit;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        /* Overlay and Message Card */
        .account-overlay-card {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 20;
            background-color: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 8px 12px -2px rgba(0, 0, 0, 0.08), 0 3px 5px -1px rgba(0, 0, 0, 0.04);
            text-align: center;
            display: none;
            flex-direction: column;
            gap: 1.25rem;
        }

        .account-overlay-card.visible {
            display: flex;
        }

        .account-overlay-card .account-ok-btn {
            padding: 0.6rem 1.5rem;
            background-color: #019863;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            border-radius: 0.4rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .account-overlay-card .account-ok-btn:hover {
            background-color: rgba(1, 152, 99, 0.9);
        }

        .account-overlay-card p {
            margin: 0;
            font-size: 1rem;
            color: #112116;
        }

        /* Animations */
        @keyframes account-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes account-fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .account-animate-fadeInUp {
            animation: account-fadeInUp 0.7s ease-out forwards;
            opacity: 0;
        }