:root {
    --primary-color: #2b50ed;
    --secondary-color: #2644c5;
    --body: #F3F4F6;
    --light-gray: #6b72800d;
    --grey-border: #d1d5db;
    --text-color: #111827;
    --text-color-2: #6B7280;
    --primary-font: 'DM Sans', sans-serif;
}

.tooltip {
    position: relative;
}

.tooltip:hover::after {
    content: 'Send Message';
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}


#welcomeMessage {
    display: none;
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.revenue-grid {
    grid-template-columns: auto auto!important;
    
}

#welcomeMessage p {
    font-size: 18px;
    margin-bottom: 15px;
}

#welcomeMessage button {
    background-color: #fff;
    color: var(--primary-color);
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}




.flatpickr-time {
    width: 180px; /* Set the width as per your preference */
}

/* Adjust the width of the dropdown container */
.flatpickr-time.open {
    max-width: 50px; /* Set the maximum width to control the size */
}

.flatpickr-calendar.open {
    width: 205px;
}

@keyframes slideInFromRight {
    0% {
        right: -100%;
    }
    100% {
        right: 0;
    }
}




.slide-from-right {
    position: absolute;
    top: 50px;
    right: 0;
    animation: slideInFromRight 0.8s ease-in-out;
    z-index: 1000; /* Ensure it's above other content */
    max-width: 60%; /* Adjust width as needed */
    /* Additional styling */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Optional: Add shadow */
    /* Add any other necessary styling */
}

.message {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hidden-table {
    display: none; /* Initially hide the table */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.table-container {
    transition: max-height 0.4s ease-in-out; /* Animation effect */
    overflow: hidden;
}

body {
    font-family: var(--primary-font);
    background-color: var(--body);
    overflow-x: hidden;
    font-size: 14px;
}

a {
    text-decoration: none;
}

p {
    font-size: 12px;
    margin: 0;
}

h1 {
    font-weight: 700;
    font-size: 24px;
    color: var(--text-color);
}

h2 {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-color);
}

h4 {
    color: var(--text-color);
}

.main-content {
    padding-top: 106px;
    padding-bottom: 46px;
    padding-left: 340px;
    padding-right: 20px;
    transition: .3s;
}

.main-content.sidebar-hide {
    padding-left: 105px;
    transition: .3s;
}

/* button */

.btn {
    background-color: var(--secondary-color);
    font-size: 14px;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    padding: 7px 16px;
    border: none;
    width: fit-content;
    transition: .3s;
}

.btn:hover {
    color: white;
    background-color: var(--primary-color);
    transition: .3s;
}

.btn:focus {
    color: white;
    background-color: var(--primary-color);
    box-shadow: none;
}

.btn-second {
    color: var(--text-color);
    background-color: white;
    border: 1px solid var(--grey-border);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.036);
}

.btn-second:hover,
.btn-second:focus {
    color: var(--text-color);
    background-color: white;
}

/* card */

.card {
    background-color: white;
    border-radius: 10px;
    border: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
}

.card .heading {
    border-bottom: 1px solid #00000019;
    padding-bottom: 10px;
    margin-bottom: 15px;
}


/* sidebar */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 320px;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 999;
    transition: .3s;
}

.sidebar-header {
    display: flex;
    padding: 12px 12px;
    border-bottom: 1px solid var(--primary-color);
    height: 64px;
    border-right: 1px solid rgba(0, 0, 0, 0.097);
}

.sidebar-header .logo {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.sidebar-close-btn,
.sidebar-close-btn-mb {
    display: block;
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    margin-right: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: .3s;
}

.sidebar-close-btn-mb {
    display: none;
}

.sidebar-close-btn-mb svg {
    width: 24px;
}

.sidebar-show-btn {
    display: none;
}

.sidebar-close-btn:hover,
.sidebar-close-btn-mb:hover {
    background-color: var(--light-gray);
    transition: .3s;
}

.sidebar-close-btn:focus,
.sidebar-close-btn-mb:focus {
    background-color: #e6ecff;
    transition: .3s;
}

.sidebar-nav {
    padding: 0px 12px;
    padding-top: 20px;
    padding-bottom: 70px;
    overflow-x: scroll;
    height: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

.sidebar-nav li {
    width: 100%;
}

.sidebar .nav-item {
    width: 100%;
}

.sidebar .nav-link {
    display: flex;
    color: var(--text-color);
    transition: 0.3s;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    margin: 3px 0px;
}

.sidebar .nav-link:hover {
    background-color: var(--light-gray);
    transition: 0.3s;
}

.sidebar .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.sidebar .nav-item svg {
    width: 20px;
    margin-right: 12px;
}

.sidebar-accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.097);
    margin-top: 15px;
}

.sidebar-accordion .accordion-item {
    border: none;
    margin-top: 15px;
}

.sidebar-accordion .accordion-button {
    background-color: white;
    box-shadow: none;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: #4B5563;
    letter-spacing: .05em;
}

.sidebar-accordion .accordion-button::after {
    width: 14px;
    height: 14px;
    background-size: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* sidebar hide */

.sidebar.hide {
    max-width: 85px;
    transition: .3s;
}

.sidebar.hide .sidebar-close-btn {
    margin: auto;
}

.sidebar.hide .sidebar-close-btn svg {
    width: 24px;
}

.sidebar.hide .logo {
    display: none;
}

.sidebar.hide .nav-link {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sidebar.hide .nav-item .text {
    display: none;
}

.sidebar.hide .nav-item svg {
    margin-right: 0px;
}

.sidebar.hide .sidebar-close-btn {
    display: none;
}

.sidebar.hide .sidebar-show-btn {
    display: block;
}

/* .white-tooltip .tooltip-inner {
    background-color: white;
    color: var(--text-color);
}

.white-tooltip .tooltip-arrow {
    background-color: white;
    color: white;
}  */



/* header */

.main-header {
    display: flex;
    align-items: center;
    background-color: white;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding-left: 340px;
    padding-right: 20px;
    height: 64px;
    border-left: 1px solid;
    border-bottom: 1px solid;
    border-color: rgba(0, 0, 0, 0.097);
    z-index: 99;
    transition: .3s;
}

.main-header.sidebar-hide {
    padding-left: 105px;
    transition: .3s;
}

.main-header .profile-img-wrapper {
    background-color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border: none;
}

.profile-dropdown .dropdown-menu {
    padding: 0;
    border-radius: 10px;
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, .2);
    width: 224px;
    /* width: 100%; */
    border: none;
}

.profile-dropdown li .dropdown-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.097);
    padding: 10px 15px;
}

.profile-dropdown li {
    padding: 4px;
}

.profile-dropdown li a {
    padding: 6px 10px;
    border-radius: 5px;
    transition: .3s;
}

.profile-dropdown li a:hover {
    background-color: var(--primary-color);
    transition: .3s;
}

.profile-dropdown li a:hover svg,
.profile-dropdown li a:hover span {
    color: white;
    transition: .3s;
}


.profile-dropdown li svg {
    width: 20px;
    margin-right: 8px;
    color: #000;
}

.profile-dropdown li span {
    color: #121827;
    font-size: 14px;
}

.header-breadcrumb .breadcrumb-item {
    color: var(--text-color-2);
}

.header-breadcrumb .breadcrumb-item.active a {
    font-weight: 500;
    color: var(--text-color);
}

.header-breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding-left: 16px;
}

.header-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    padding-right: 16px;
}

/* dashboard */


.heading-wrapper {
    margin-bottom: 35px;
    padding-right: 0;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 30px;
}

.revenue-grid {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 30px;
    margin-top: 30px;
}

.revenue-grid .card span {
    color: var(--text-color-2);
    font-weight: 500;
    margin-bottom: 8px;
}

.revenue-grid .card h4 {
    font-size: 30px;
    font-weight: 400;
    margin: 0;
}

/* Schema Widget Page */

.table-card {
    background-color: white;
    border-radius: 10px;
    border: 1px solid var(--grey-border);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.036);
    overflow: hidden;
}

.table-header {
    justify-content: space-between;
    padding: 0px 10px;
}

.filter-col {
    padding: 25px 15px;
    padding-bottom: 0;
    display: flex;
    gap: 15px 40px;
    flex-wrap: wrap;
}

.reset-filter-col {
    padding: 25px 15px;
    padding-top: 10px;
    display: flex;
    justify-content: end;
    border-bottom: 1px solid #00000019;
    margin-bottom: 5px;
}

.reset-filter-col a {
    font-weight: 500;
    color: #f43f5e
}

.filter-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.filter-item label {
    margin-left: 10px;
    font-weight: 500;
}

.delete-dropdown .delete-btn {
    display: block;
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    padding: 9px;
    /* margin-right: 10px; */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: .3s;
}

.delete-dropdown .delete-btn:hover {
    background-color: var(--light-gray);
    transition: .3s;
}

.delete-dropdown .delete-btn:focus {
    background-color: #e6ecff;
    transition: .3s;
}

.delete-dropdown li a:hover {
    background-color: #f43f5e;
}

.delete-dropdown li svg {
    color: #f43f5e;
}


.table-selection-col {
    background-color: #e6ecff;
    padding: 8px 20px;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.check-item-dropdown {
    margin-left: 10px;
}

.check-item-dropdown .dropdown-menu {
    padding: 6px 0px;
}

.check-item-dropdown li a {
    background-color: transparent !important;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 10px;
}

.check-item-dropdown li label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color) !important;
}

.search-col,
.check-item-dropdown,
.delete-dropdown {
    padding: 8px 0px;
}

.serach-input {
    position: relative;
}

.serach-input svg {
    color: #9ca3af;
}

.serach-input input {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 6px 10px;
    padding-left: 38px;
    font-size: 16px;
}

.serach-input input::placeholder {
    border-radius: 8px;
    color: #9ca3af;
}

.serach-input input:focus {
    outline: 2px solid var(--primary-color);
}

.serach-input .search-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 8px;
    left: 10px;
}

.table-selection-col p {
    font-size: 14px;
    font-weight: 500;
}

.table-selection-col button {
    font-size: 14px;
    border: none;
    color: var(--secondary-color);
    background-color: transparent;
    padding: 0;
    font-weight: 500;
}

.table-container {
    overflow-x: auto;
    position: relative;
}

.data-table {
    min-width: 100%;
    width: max-content;
    margin: 0;
}

.data-table thead tr {
    background-color: var(--light-gray);
}

.data-table tbody tr {
    transition: .3s;
}

.data-table tbody tr:hover {
    --bs-table-accent-bg: var(--light-gray);
    transition: .3s;
}

.data-table th {
    border-bottom: 1px solid #dee2e6 !important;
    color: #455563;
    font-weight: 500;
    padding: 8px 20px;
    vertical-align: middle;
}

.data-table td {
    font-size: 16px;
    color: #111827;
    padding: 13px 20px;
    vertical-align: middle;
}

.table-card input[type=checkbox] {
    display: flex;
    accent-color: var(--secondary-color);
    width: 14px;
    height: 14px;
}


.data-table .edit-btn {
    font-size: 14px;
    font-weight: 500;
    fill: var(--secondary-color);
    transition: .3s;
}

.data-table .edit-btn:hover {
    text-decoration: underline;
    fill: var(--primary-color);
    transition: .3s;
}

.data-table .edit-btn svg {
    width: 16px;
    margin-right: 4px;
}

.table-pagination {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    padding: 10px 10px;
}

.table-pagination .pagination-btn-mb {
    display: none;
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: .3s;
    margin-left: auto;
}

.table-pagination .pagination-btn-mb.prev-btn {
    margin-right: auto;
    margin-left: unset;
}

.table-pagination .pagination-btn-mb.prev-btn svg {
    transform: scaleX(-1);
}

.table-pagination .pagination-btn-mb:hover {
    background-color: var(--light-gray);
    transition: .3s;
}

.table-pagination .pagination-btn-mb:focus {
    background-color: #e6ecff;
    transition: .3s;
}

.table-pagination p {
    font-size: 14px;
    font-weight: 500;
}

.table-pagination .entries select {
    border-radius: 8px;
    width: 64px;
    font-size: 14px;
    padding: 5px 12px;
}

.table-pagination .entries select:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-color);
    border-color: transparent;
}

.table-pagination .page-link {
    color: var(--text-color-2);
    font-weight: 500;
    padding: 6px 14px;
    /* width: 34px; */
    height: 34px;
    display: flex;
    justify-content: center;
}

.table-pagination .page-link:hover {
    background-color: var(--light-gray);
}

.table-pagination .page-link:focus,
.table-pagination .page-link.active {
    color: var(--secondary-color);
    background-color: #e6ecff;
    outline: 2px solid var(--primary-color);
    border-radius: 5px;
    border-color: transparent;
    box-shadow: none;
    z-index: 9;
}

.table-pagination .page-item:first-child .page-link {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.table-pagination .page-item:first-child .page-link svg {
    transform: scaleX(-1);
}

.table-pagination .page-item:last-child .page-link {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.table-pagination .page-link svg {
    width: 18px;
    height: 18px;
    color: var(--secondary-color);
}

/* Schema Widget Create */

.create-form input,
.create-form textarea,
.create-form select,
.create-form .trix-content,
.create-form .input-show {
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    padding: 8px 12px;
    background-color: white;
    border: 1px solid var(--grey-border);
    outline: 2px solid transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.036);
    margin-bottom: 24px;
}

/* tiny editor */

.create-form .tox-tinymce {
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    background-color: white;
    border: 1px solid var(--grey-border);
    outline: 2px solid transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.036);
    margin-bottom: 24px;
}

.tox .tox-sidebar-wrap {
    border-top: 1px solid var(--grey-border);
}

.tox .tox-tbtn {
    font-size: 16px !important;
}

.create-form .tox-tinymce .tox-menubar,
.tox-statusbar__branding {
    display: none !important;
}

/* .create-form .tox-editor-header {
    border: 1px solid var(--grey-border)!important;
} */

.create-form input[type=file] {
    border-radius: 0px;
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    margin-bottom: 24px;
}

.create-form input[type=file]:focus {
    border: none;
    outline: none;
}


.create-form input:focus,
.create-form textarea:focus,
.create-form select:focus,
.create-form .trix-content:focus {
    border: none;
    outline: 2px solid var(--primary-color);
}

.create-form label {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 7px;
}

.create-form span {
    display: block;
    margin-left: auto;
    font-size: 12px;
    color: var(--text-color-2);
    font-weight: 400;
}

.create-form label sup {
    color: #be123c;
}

.create-form select,
.create-form .dropdown-toggle {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 24px;
    padding-right: 40px;
    appearance: none;
}

.form-btn-col {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.create-form .form-dropdown .dropdown-toggle {
    color: var(--text-color-2);
    text-align: start;
    font-weight: 400;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    padding: 8px 12px;
    background-color: white;
    border: 1px solid var(--grey-border);
    outline: 1px transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.036);
    margin-bottom: 25px;
}

.create-form .form-dropdown .dropdown-toggle:focus {
    border: none;
    outline: 2px solid var(--primary-color);
}

.create-form .form-dropdown .dropdown-toggle:after {
    display: none;
}

.create-form .form-dropdown .dropdown-menu {
    font-weight: 400;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    padding: 8px 0px;
    background-color: white;
    border: 1px solid var(--grey-border);
    outline: 1px transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.036);
    margin-bottom: 25px;
}

.create-form .form-dropdown .dropdown-item {
    padding: 8px 12px;
    border-bottom: 1px solid white;
}

.create-form .form-dropdown .dropdown-item:hover,
.create-form .form-dropdown .dropdown-item:focus,
.create-form .form-dropdown .dropdown-item.active {
    background-color: var(--secondary-color);
    color: white;
}

.create-form .dropdown-search input {
    border: none;
    outline: none;
    margin-bottom: 0px;
}

.form-col .edit-del-btn {
    background-color: #e11d48;
}

.form-col .edit-del-btn:hover {
    background-color: #f43f5e;
}

.form-card {
    background-color: white;
    border-radius: 12px;
    border: 1px solid var(--grey-border);
    padding: 24px;
}

fieldset {
    border-radius: 12px;
    border: 1px solid var(--grey-border);
    padding: 0px 24px;
    padding-top: 10px;
}

legend {
    float: none;
    width: auto;
    font-size: 14px;
    font-weight: 500;
    padding: 0 10px;
    margin-left: -8px;
}

.form-heading {
    font-weight: 500;
    margin-bottom: 26px;
    font-size: 14px;
}

.form-description {
    color: var(--text-color-2);
    font-weight: 400;
    margin-bottom: 26px;
    font-size: 14px;
}

.form-heading sup {
    color: #be123c;
}

.check-img {
    display: block;
    background-size: cover;
    width: 24px;
    height: 24px;
}


.check-img.active {
    background-image: url(../images/active.svg);
}

.check-img.inactive {
    background-image: url(../images/inactive.svg);
    ;
}

/* trix editor */

trix-toolbar .trix-button-group {
    margin-bottom: 10px;
    border: none !important;
    gap: 6px;
}

.trix-button {
    background-color: white !important;
    border: 1px solid var(--grey-border) !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    transition: .3s;
}

.trix-button:hover {
    background-color: var(--light-gray);
    transition: .3s;
}

trix-toolbar .trix-button.trix-active {
    background-color: var(--secondary-color) !important;

}

trix-toolbar .trix-button.trix-active::before {
    opacity: 1 !important;
    filter: invert(100%);
}

trix-toolbar .trix-button--icon::before {
    opacity: 0.8 !important;
}

trix-toolbar .trix-button--icon {
    height: 2em !important;
}

.data-table .no-record {
    display: flex;
    justify-content: center;
    padding: 30px 0px;
}

.data-table .no-record-img {
    background-color: #fffbeb;
    margin: auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 20px;
    margin-bottom: 30px;
}

.data-table .no-record-img svg {
    color: var(--primary-color);
}

.table-tab-btn {
    display: flex;
    justify-content: center;
    border-top: 1px solid #00000019;
    margin-top: 20px;
    padding-top: 30px;
    padding-bottom: 10px;
}

.table-tab-btn .tab-btn-col {
    display: flex;
    gap: 5px;
    background-color: #ECEEEF;
    border-radius: 10px;
    padding: 4px;

}

.table-tab-btn .tab-btn-col .btn {
    padding: 3px 18px;
    color: var(--text-color);
    background-color: transparent;
    border: 2px solid transparent;
}

.table-tab-btn .tab-btn-col .btn:focus {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.table-tab-btn .tab-btn-col .btn.active {
    color: var(--secondary-color);
    background-color: white;
}

.form-service-checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 24px;
}

.form-service-checkbox label {
    margin-bottom: 0;
    margin-left: 10px;
}

.form-service-checkbox input[type=checkbox] {
    accent-color: var(--secondary-color);
    width: 14px;
    height: 14px;
    width: auto;
    margin: 0;
    outline: none;
    border: none;
}

/* login page */

.login-page {
    min-height: 100vh;
    background-image: radial-gradient(circle at top, #fef3c7, #fff 50%);
}

.login-col {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 25px;
}

.login-box {
    max-width: 432px;
    width: 100%;
    background-color: #ffffff80;
    padding: 34px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #00000019;
}

.login-box .logo {
    display: block;
    font-size: 20px;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.login-box h1 {
    margin-bottom: 16px;
}

.login-box .remember-col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-box input[type=checkbox] {
    accent-color: var(--secondary-color);
    width: 14px;
    height: 14px;
    width: auto;
    margin: 0;
    outline: none;
    border: none;
}

.login-box .btn {
    margin-top: 24px;
    width: 100%;
}

/* form step */

.form-step {
    margin-top: 50px;
}

.form-stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
}

ul.form-stepper .form-stepper-circle {
    position: relative;
}

ul.form-stepper .form-stepper-circle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.form-stepper-horizontal li {
    position: relative;
    display: flex;
    flex: 1;
}

.form-stepper-horizontal li:not(:last-child):after {
    position: relative;
    flex: 1;
    height: 1px;
    content: "";
    top: 32%;
}

.form-stepper-horizontal li:after {
    background-color: #dee2e6;
}

.form-stepper-horizontal li.form-stepper-completed:after {
    background-color: var(--primary-color);
}

.form-stepper-horizontal li:last-child {
    flex: unset;
}

ul.form-stepper li a .form-stepper-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 0;
    line-height: 1.7rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.38);
    border-radius: 50%;
}

.form-stepper .form-stepper-active .form-stepper-circle {
    background-color: var(--primary-color) !important;
    color: #fff;
}

.form-stepper .form-stepper-active .label {
    color: #4361ee !important;
}

.form-stepper .form-stepper-active .form-stepper-circle:hover {
    background-color: #4361ee !important;
    color: #fff !important;
}

.form-stepper .form-stepper-unfinished .form-stepper-circle {
    background-color: #e6ecff;
}

.form-stepper .form-stepper-completed .form-stepper-circle {
    background-color: #0e9594 !important;
    color: #fff;
}

.form-stepper .form-stepper-completed .label {
    color: #0e9594 !important;
}

.form-stepper .form-stepper-completed .form-stepper-circle:hover {
    background-color: #0e9594 !important;
    color: #fff !important;
}

.form-stepper .form-stepper-active span.text-muted {
    color: #fff !important;
}

.form-stepper .form-stepper-completed span.text-muted {
    color: #fff !important;
}

.form-stepper .label {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0.5rem;
}

.form-stepper a {
    cursor: default;
}

.text-muted {
    color: #393939 !important;
}

.input-show {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 41px;
}

.input-show p {
    font-size: 16px;
    color: #111827;
}

.input-show .copy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: .3s;
}

.input-show .copy-btn:hover {
    background-color: rgb(230, 236, 255);
    transition: .3s;
}

.input-show .copy-btn svg {
    fill: var(--primary-color);
    width: 18px;
    height: 18px;
    transition: .3s;
}

/* .input-show .copy-btn:hover svg {
    fill: var(--secondary-color);
} */