* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: 0 0% 100%;
    --body-color: 220 7% 25%;
    --text-color: 220 8% 21%;
    --heading-color: 0 0% 0%;
    --dark: 221 39% 11%;
    --black: 0 0% 0%;
    --border-color: 240 5% 92%;
    --section-bg: 60 20% 96%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.main-container {
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(70, 52, 255, 0.15);
    overflow: hidden;
    display: flex;
    min-height: 650px;
}

.account-form {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(70, 52, 255, 0.15);
    padding: 24px;
}

.left-side {
    flex: 1;
    background: linear-gradient(135deg, #4634ff 0%, #2d1f99 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.left-side::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.left-side::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.left-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.illustration {
    width: 280px;
    height: 280px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.illustration i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.9);
}

.left-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.left-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 15px;
}

.features {
    margin-top: 30px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.feature-item i {
    font-size: 1.2rem;
    margin-right: 12px;
    color: #fff;
}

.right-side {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 35px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.form-header p {
    color: #718096;
    font-size: 1rem;
}

.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-label .required {
    color: #e53e3e;
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.form-control:focus,
.form-select:focus {
    border-color: #4634ff;
    box-shadow: 0 0 0 3px rgba(70, 52, 255, 0.1);
    background: #ffffff;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #4634ff;
    border: none;
    color: white !important;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover,
.btn-submit:active {
    background: #3826d9 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(70, 52, 255, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message i {
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .main-container {
        flex-direction: column;
    }

    .left-side {
        padding: 40px 30px;
    }

    .illustration {
        width: 200px;
        height: 200px;
    }

    .illustration i {
        font-size: 80px;
    }

    .left-content h2 {
        font-size: 1.8rem;
    }

    .right-side {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    body {
        padding: 20px 10px;
    }

    .left-side,
    .right-side {
        padding: 30px 20px;
    }

    .form-header h3 {
        font-size: 1.6rem;
    }
}

.logo img {
    width: 180px;
    margin-bottom: 32px;
}


/* ======================  Select2 Start  ======================*/
.select2-wrapper {
    --s-height: 50px;
    --select-border: #e2e8f0;
    --select-bg: #f7fafc;
    --select-shadow: none;
    --border-radius: 8px;
    --font-size: 1rem;
    --font-weight: 400;
    --select-width: 100%;
    --select-color: hsl(var(--heading-color));
    --arrow-color: #242629;
}

.select2-group {
    position: relative;
}

.select2-group .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.select2-group .select2-container--default :is(.select2-selection--multiple, .select2-selection--single) {
    padding-left: 36px;
}

.selection {
    display: block;
}

.select2 .dropdown-wrapper {
    display: none;
}

.select2-container--default :is(.select2-selection--multiple, .select2-selection--single) {
    border: 2px solid var(--select-border);
    background: var(--select-bg);
    border-radius: var(--border-radius);
    min-height: var(--s-height);
    padding-inline: 4px;
    -webkit-box-shadow: var(--select-shadow);
    box-shadow: var(--select-shadow);
}

.select2-container--default.select2-container--focus :is(.select2-selection--multiple, .select2-selection--single),
.select2-container--default.select2-container--open :is(.select2-selection--multiple, .select2-selection--single) {
    border-color: #4634ff !important;
    box-shadow: 0 0 0 3px rgba(70, 52, 255, 0.1);
    border-radius: 8px !important;
}

.select2-container--default .select2-results__option--selected {
    background-color: hsl(var(--black)/0.05);
}

.select2-dropdown {
    border: 1px solid #7e7e7e48 !important;
    min-width: 140px;
    border-radius: var(--border-radius) !important;
    margin-top: 4px !important;
    background-color: #fff;
}

.select2-container--default .select2-results__option--selected {
    background-color: hsl(var(--section-bg)) !important;
    color: black !important;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: var(--select-bg) !important;
    color: black !important;
}

.select2-results__option {
    padding: 6px 10px;
    color: hsl(var(--black));
    font-size: var(--font-size);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: hsl(var(--gray-color)/0.1);
    border: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--black));
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: var(--s-height);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--arrow-color) transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--arrow-color) transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: var(--s-height);
    font-size: var(--font-size);
    color: var(--select-color);
    font-weight: var(--font-weight);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 6px;
    padding-right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--select-border);
    outline: 0;
    border-radius: var(--border-radius);
    padding: 6px 16px;
    font-size: var(--font-size);
    color: hsl(var(--black));
    background-color: hsl(var(--white)/0.05);
}

.select2-container:has(.select2-selection--multiple, .select2-selection--single) {
    width: var(--select-width) !important;
}

.select2-results__options::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.select2-results__options::-webkit-scrollbar-track {
    background-color: hsl(var(--select-border));
}

.select2-results__options::-webkit-scrollbar-thumb {
    background-color: hsl(var(--black)/0.2);
}

* {
    outline: none !important;
}

/* ======================  Select2 End  ======================*/


.form-group {
    margin-bottom: 16px;
}


/* ================================= Table Css Start =========================== */


.dashboard-search-form {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.dashboard-search-form-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: hsl(var(--heading-color));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dashboard-search-form-icon svg {
    width: 20px;
    height: 20px;
}

.dashboard-search-form .form--control {
    padding-left: 40px;
    border-radius: 8px;
    background: hsl(var(--section-bg));
    border: 1px solid hsl(var(--border-color));
}

.dashboard-search-form .form--control:focus {
    border-color: hsl(var(--base));
}

.dashboard-search-form .form--control::-webkit-input-placeholder {
    color: hsl(var(--body-color));
}

.dashboard-search-form .form--control::-moz-placeholder {
    color: hsl(var(--body-color));
}

.dashboard-search-form .form--control:-ms-input-placeholder {
    color: hsl(var(--body-color));
}

.dashboard-search-form .form--control::-ms-input-placeholder {
    color: hsl(var(--body-color));
}

.dashboard-search-form .form--control::placeholder {
    color: hsl(var(--body-color));
}



.table {
    margin: 0;
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 0px 0px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid hsl(var(--border-color));
}

.table thead tr th {
    background-color: hsl(var(--section-bg));
    text-align: left;
    padding: 12px 24px;
    color: hsl(var(--body-color));
    font-weight: 700;
    border-bottom: 0;
    max-width: 220px;
    font-size: 1rem;
    border: 0;
    border-bottom: 1px solid hsl(var(--black)/0.05);
}

.table thead tr th:not(:first-child) {
    border-left: 0;
}

.table thead tr th:first-child {
    text-align: left;
}

.table thead tr th:last-child {
    text-align: right;
}

.table tbody {
    border: 0 !important;
}

.table tbody tr:nth-child(even) {
    background-color: hsl(var(--black)/0.02);
}

.table tbody tr:last-child {
    border-bottom: 0;
}

.table tbody tr:last-child td {
    border-bottom: 0;
}

.table tbody tr:last-child td:first-child {
    border-radius: 0px 0 0 6px;
}

.table tbody tr:last-child td:last-child {
    border-radius: 0 0px 6px 0;
}

.table tbody tr td {
    text-align: left;
    vertical-align: middle;
    padding: 12px 24px;
    border-width: 1px;
    border: 0;
    color: hsl(var(--body-color));
    max-width: 220px;
    font-size: 1rem;
    border-bottom: 1px solid hsl(var(--black)/0.05);
    background-color: transparent;
}

.table tbody tr td::before {
    content: attr(data-label);
    color: hsl(var(--heading-color));
    font-weight: 600;
    font-size: 1rem;
    display: none;
    width: 45% !important;
    text-align: left;
}

.table tbody tr td:first-child {
    text-align: left;
}

.table tbody tr td:last-child {
    text-align: right;
}

@media screen and (max-width: 1399px) {
    .table-responsive--md tr td {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 991px) {
    .table-responsive--md thead {
        display: none;
    }

    .table-responsive--md tbody .form--check {
        display: none;
    }

    .table-responsive--md tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--md tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--md tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--md tbody tr {
        display: block;
    }

    .table-responsive--md tbody tr:nth-child(even) {
        background-color: hsl(var(--section-bg)/0.4);
    }

    .table-responsive--md tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--black)/0.05);
    }

    .table-responsive--md tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.05);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--md tbody tr td:last-child {
        border: none;
    }

    .table-responsive--md tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--md tbody tr td::before {
        display: block;
    }
}

@media screen and (max-width: 1499px) {
    .table-responsive--lg tr td {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 1199px) {
    .table-responsive--lg thead {
        display: none;
    }

    .table-responsive--lg tbody .form--check {
        display: none;
    }

    .table-responsive--lg tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--lg tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--lg tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--lg tbody tr {
        display: block;
    }

    .table-responsive--lg tbody tr:nth-child(even) {
        background-color: hsl(var(--section-bg)/0.4);
    }

    .table-responsive--lg tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--black)/0.05);
    }

    .table-responsive--lg tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.05);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--lg tbody tr td:last-child {
        border: none;
    }

    .table-responsive--lg tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--lg tbody tr td::before {
        display: block;
    }
}

@media screen and (max-width: 1399px) {
    .table-responsive--xl tr td {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 1399px) {
    .table-responsive--xl thead {
        display: none;
    }

    .table-responsive--xl tbody .form--check {
        display: none;
    }

    .table-responsive--xl tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--xl tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--xl tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--xl tbody tr {
        display: block;
    }

    .table-responsive--xl tbody tr:nth-child(even) {
        background-color: hsl(var(--section-bg)/0.4);
    }

    .table-responsive--xl tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--black)/0.05);
    }

    .table-responsive--xl tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.05);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--xl tbody tr td:last-child {
        border: none;
    }

    .table-responsive--xl tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--xl tbody tr td::before {
        display: block;
    }
}

@media (max-width: 1599px) {
    .table-responsive--xxl thead {
        display: none;
    }

    .table-responsive--xxl tbody .form--check {
        display: none;
    }

    .table-responsive--xxl tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--xxl tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--xxl tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--xxl tbody tr {
        display: block;
    }

    .table-responsive--xxl tbody tr:nth-child(even) {
        background-color: hsl(var(--section-bg)/0.4);
    }

    .table-responsive--xxl tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--black)/0.05);
    }

    .table-responsive--xxl tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.05);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--xxl tbody tr td:last-child {
        border: none;
    }

    .table-responsive--xxl tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--xxl tbody tr td::before {
        display: block;
    }
}


/* ================================= Table Css End =========================== */


.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.table-header-right {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.table-header-search {
    width: 200px;
}





/* success */


.success-container {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(70, 52, 255, 0.15);
    padding: 60px 50px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4634ff 0%, #2d1f99 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    animation: scaleIn 0.6s ease-out 0.3s backwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.success-icon::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 3px solid rgba(70, 52, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.success-icon i {
    font-size: 60px;
    color: #ffffff;
}

.success-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    animation: fadeIn 0.8s ease-out 0.5s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.success-container p {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 35px;
    animation: fadeIn 0.8s ease-out 0.7s backwards;
}

.info-box {
    background: #f7fafc;
    border-left: 4px solid #4634ff;
    padding: 16px 22px;
    border-radius: 10px;
    margin-bottom: 35px;
    text-align: left;
    animation: fadeIn 0.8s ease-out 0.9s backwards;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4a5568;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.1rem;
    color: #4634ff;
    margin-right: 12px;
    width: 20px;
}

.btn-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 0.8s ease-out 1.1s backwards;
}

.btn-primary-custom {
    background: #4634ff;
    border: none;
    color: white;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    background: #3826d9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(70, 52, 255, 0.3);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-custom:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    color: #2d3748;
    transform: translateY(-2px);
}

.social-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    animation: fadeIn 0.8s ease-out 1.3s backwards;
}

.social-links p {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4634ff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #4634ff;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .success-container {
        padding: 40px 30px;
    }

    .success-container h1 {
        font-size: 2rem;
    }

    .success-container p {
        font-size: 1rem;
    }

    .btn-container {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
}