@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");

/* start: Globals */
:root {
    /* This color palletes from Tailwind CSS */
    --white: #fff;
    --black: #000;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;
    --danger-50: #fef2f2;
    --danger-100: #fee2e2;
    --danger-200: #fecaca;
    --danger-300: #fca5a5;
    --danger-400: #f87171;
    --danger-500: #ef4444;
    --danger-600: #dc2626;
    --danger-700: #b91c1c;
    --danger-800: #991b1b;
    --danger-900: #7f1d1d;
    --danger-950: #450a0a;
    --warning-50: #fff7ed;
    --warning-100: #ffedd5;
    --warning-200: #fed7aa;
    --warning-300: #fdba74;
    --warning-400: #fb923c;
    --warning-500: #f97316;
    --warning-600: #ea580c;
    --warning-700: #c2410c;
    --warning-800: #9a3412;
    --warning-900: #7c2d12;
    --warning-950: #431407;
    --success-50: #ecfdf5;
    --success-100: #d1fae5;
    --success-200: #a7f3d0;
    --success-300: #6ee7b7;
    --success-400: #34d399;
    --success-500: #10b981;
    --success-600: #059669;
    --success-700: #047857;
    --success-800: #065f46;
    --success-900: #064e3b;
    --success-950: #022c22;
    --info-50: #eff6ff;
    --info-100: #dbeafe;
    --info-200: #bfdbfe;
    --info-300: #93c5fd;
    --info-400: #60a5fa;
    --info-500: #3b82f6;
    --info-600: #2563eb;
    --info-700: #1d4ed8;
    --info-800: #1e40af;
    --info-900: #1e3a8a;
    --info-950: #172554;
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --primary-200: #c7d2fe;
    --primary-300: #a5b4fc;
    --primary-400: #818cf8;
    --primary-500: #6366f1;
    --primary-600: #4f46e5;
    --primary-700: #4338ca;
    --primary-800: #3730a3;
    --primary-900: #312e81;
    --primary-950: #1e1b4b;
    --text-xxs: 10px;
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    --rounded-sm: 2px;
    --rounded: 4px;
    --rounded-md: 6px;
    --rounded-lg: 8px;
    --rounded-xl: 12px;
    --rounded-full: 999px;
    --duration-150: 150ms;
}
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Onest", sans-serif;
}
input,
textarea,
button {
    font-family: inherit;
}
/* end: Globals */

/* start: Button */
.btn {
    height: 36px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    font-size: var(--text-base);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rounded-lg);
    text-align: center;
}
.btn-block {
    display: flex;
    width: 100%;
}
.btn-primary {
    /* background-color: var(--primary-500); */
    background-color: #02114f;
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--primary-600);
}
/* end: Button */

/* start: Dropdown */
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: fixed;
    background-color: var(--white);
    padding: 8px 0;
    border: 1px solid var(--neutral-200);
    border-radius: var(--rounded-lg);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 10;
    display: none;
}
.dropdown.active .dropdown-menu {
    display: block;
}
.dropdown-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 8px;
    border-bottom: 1px solid var(--neutral-200);
}
.dropdown-menu-title {
    font-size: var(--text-sm);
    font-weight: 500;
}
.dropdown-menu-item {
    height: 32px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    font-size: var(--text-sm);
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    width: 100%;
}
.dropdown-menu-item > :first-child {
    margin-right: 8px;
    flex-shrink: 0;
}
.dropdown-menu-item:hover {
    background-color: var(--neutral-100);
}
.dropdown-menu-item-image {
    width: 24px;
}
/* end: Dropdown */

/* start: Badge */
/* .badge {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    height: 20px;
    font-size: var(--text-xs);
    font-weight: 500;
    border-radius: var(--rounded-full);
}
.badge-primary {
    color: var(--primary-500);
    background-color: var(--primary-100);
} */
/* end: Badge */

/* start: Sidebar */
.sidebar-overlay {
    display: none;
}
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100%;
    background-color: var(--white);
    border-right: 1px solid var(--neutral-200);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 30;
    transition-property: width;
    transition-duration: var(--duration-150);
}
body.sidebar-collapsed .sidebar {
    width: 64px;
}
.sidebar-brand-wrapper {
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    flex-shrink: 0;
    margin-bottom: 16px;
}
.sidebar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--black);
}
.sidebar-brand-image {
    flex-shrink: 0;
    margin-right: 12px;
    width: 32px;
    transition-property: margin-right;
    transition-duration: var(--duration-150);
}
body.sidebar-collapsed .sidebar-brand-image {
    margin-right: 16px;
}
.sidebar-brand-name {
    font-weight: 700;
    font-size: var(--text-base);
    letter-spacing: 1px;
}
.sidebar-menu-wrapper {
    height: 100%;
    overflow-y: auto;
    min-height: 0;
}
.sidebar-menu {
    list-style-type: none;
    margin-bottom: 16px;
}
.sidebar-menu-item {
    margin-bottom: 4px;
}
.sidebar-menu-item:last-child {
    margin-bottom: 0;
}
.sidebar-menu-item.active
    > .sidebar-menu-item-link
    > .sidebar-menu-item-link-arrow {
    transform: rotateZ(90deg);
}
.sidebar-menu-item-title {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding: 0 16px;
}
.sidebar-menu-item-title-collapsed {
    text-align: center;
    display: none;
}
body.sidebar-collapsed .sidebar-menu-item-title-collapsed {
    display: block;
}
body.sidebar-collapsed .sidebar-menu-item-title-expanded {
    display: none;
}
.sidebar-menu-item-link {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 36px;
    text-decoration: none;
    color: var(--neutral-700);
    transition-property: color;
    transition-duration: var(--duration-150);
}
.sidebar-menu-item-link:hover {
    color: var(--primary-500);
}
.sidebar-menu-item-link-icon {
    font-size: var(--text-lg);
    display: flex;
    align-items: center;
    margin-right: 8px;
    flex-shrink: 0;
    transition-property: margin-left;
    transition-duration: var(--duration-150);
}
body.sidebar-collapsed .sidebar-menu-item-link-icon {
    margin-left: 6px;
}
.sidebar-menu-item-link-text {
    font-size: var(--text-sm);
    min-width: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 500;
    margin-right: 8px;
}
.sidebar-menu-item-link-arrow {
    font-size: var(--text-base);
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
body.sidebar-collapsed .sidebar-menu-item-link-arrow {
    display: none;
}
.sidebar-submenu {
    list-style-type: none;
    border-left: 1px solid var(--neutral-200);
    margin-left: 16px;
    background-color: var(--white);
    display: none;
}
.sidebar-menu-item.active > .sidebar-submenu,
.sidebar-submenu-item.active > .sidebar-submenu {
    display: block;
}
body.sidebar-collapsed .sidebar-menu-item > .sidebar-submenu {
    display: none;
    position: fixed;
    margin-left: 0;
    width: 200px;
    border: 1px solid var(--neutral-200);
    padding: 12px 0;
}
body.sidebar-collapsed .sidebar-menu-item:hover > .sidebar-submenu {
    display: block;
}
.sidebar-menu-item > .sidebar-submenu {
    margin-left: 24px;
}
.sidebar-menu-item
    > .sidebar-submenu
    > .sidebar-submenu-item
    > .sidebar-submenu {
    margin-left: 18px;
}
.sidebar-submenu-item-link {
    display: flex;
    align-items: center;
    height: 32px;
    text-decoration: none;
    color: var(--neutral-700);
    padding: 0 16px;
    transition-property: color;
    transition-duration: var(--duration-150);
}
.sidebar-menu-item > .sidebar-submenu .sidebar-submenu-item-link {
    padding-left: 18px;
}
.sidebar-submenu-item-link:hover {
    color: var(--primary-500);
}
.sidebar-submenu-item-link-text {
    font-size: var(--text-sm);
    min-width: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-right: 8px;
}
.sidebar-submenu-item-link-arrow {
    font-size: var(--text-base);
    margin-left: auto;
    flex-shrink: 0;
}
.sidebar-submenu-item.active
    > .sidebar-submenu-item-link
    > .sidebar-submenu-item-link-arrow {
    transform: rotateZ(90deg);
}
/* end: Sidebar */

/* start: Main */
.main {
    margin-left: 240px;
    transition-property: margin-left;
    transition-duration: var(--duration-150);
}
body.sidebar-collapsed .main {
    margin-left: 64px;
}
.topbar {
    height: 64px;
    display: flex;
    align-items: center;
    /* padding: 0 16px; */
    position: relative;
}
.topbar-brand {
    display: none;
}
.topbar-page-name {
    display: none;
}
.topbar-button {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rounded-full);
    /* color: var(--neutral-500); */
    color: #02114f;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    text-decoration: none;
    font-size: var(--text-lg);
    position: relative;
    transition-property: color, background-color;
    transition-duration: var(--duration-150);
}

.dropdown.active .topbar-button,
.topbar-button:hover {
    background-color: var(--neutral-100);
    color: var(--primary-500) !important;
}
.topbar-toggle {
    flex-shrink: 0;
    /* margin-right: 16px; */
}
.topbar-search-form-wrapper {
    max-width: 240px;
    width: 100%;
}
.topbar-button-search-form-back {
    display: none;
}
.topbar-search-form {
    position: relative;
    width: 100%;
}
.topbar-search-form-control {
    width: 100%;
    height: 36px;
    padding: 0 16px 0 36px;
    background-color: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--rounded-md);
    font-size: var(--text-sm);
    color: var(--neutral-700);
    outline: none;
    transition-property: border-color;
    transition-duration: var(--duration-150);
}
.topbar-search-form-control:focus {
    border-color: var(--primary-500);
    box-shadow: inset 0 0 0 1px var(--primary-500);
}
.topbar-search-form-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: var(--text-base);
    color: var(--neutral-500);
}
.topbar-search-form-clear {
    display: none;
}
.topbar-search-form-clear.active {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: var(--text-base);
    color: var(--neutral-500);
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
}
.topbar-search-form-autocomplete {
    position: fixed;
    display: none;
    background-color: var(--white);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--neutral-200);
    border-radius: var(--rounded-lg);
    padding: 12px 0;
    max-width: 400px;
    width: 100%;
}
.topbar-search-form-autocomplete.active {
    display: block;
}
.topbar-search-form-autocomplete-wrapper {
    max-height: 300px;
    width: 100%;
    overflow-y: auto;
}
.topbar-search-form-autocomplete-box {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--neutral-200);
}
.topbar-search-form-autocomplete-box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.topbar-search-form-autocomplete-box-title {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    margin-bottom: 8px;
    padding: 0 12px;
}
.topbar-search-form-autocomplete-recent {
    display: flex;
    flex-wrap: wrap;
    padding: 0 12px;
    margin-bottom: -4px;
}
.topbar-search-form-autocomplete-recent-item {
    max-width: 200px;
    height: 24px;
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    padding: 0 8px;
    background-color: var(--primary-100);
    color: var(--primary-500);
    border: none;
    outline: none;
    border-radius: var(--rounded-full);
    margin-right: 4px;
    margin-bottom: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: left;
}
.topbar-search-form-autocomplete-recent-item:hover {
    background-color: var(--primary-500);
    color: var(--white);
}
.topbar-search-form-autocomplete-recent-item-icon {
    flex-shrink: 0;
    margin-right: 4px;
}
.topbar-search-form-autocomplete-recent-item-text {
    min-width: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 500;
}
.topbar-search-form-autocomplete-product-item {
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    color: var(--neutral-700);
    font-size: var(--text-sm);
    width: 100%;
    text-align: left;
}
.topbar-search-form-autocomplete-product-item:hover {
    background-color: var(--neutral-100);
}
.topbar-search-form-autocomplete-product-item-icon {
    flex-shrink: 0;
    margin-right: 8px;
}
.topbar-search-form-autocomplete-product-item-text {
    min-width: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.topbar-search-form-autocomplete-user-item {
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    text-align: left;
}
.topbar-search-form-autocomplete-user-item:hover {
    background-color: var(--neutral-100);
}
.topbar-search-form-autocomplete-user-item-image {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: var(--rounded-full);
    margin-right: 8px;
}
.topbar-search-form-autocomplete-user-item-info {
    width: 100%;
    min-width: 0;
}
.topbar-search-form-autocomplete-user-item-name {
    font-size: var(--text-sm);
    margin-bottom: 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.topbar-search-form-autocomplete-user-item-role {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.topbar-search-form-autocomplete-user-item-status {
    font-size: var(--text-xs);
    height: 20px;
    border-radius: var(--rounded-full);
    padding: 0 8px;
    background-color: var(--neutral-200);
    color: var(--neutral-500);
    display: flex;
    align-items: center;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 8px;
}
.topbar-search-form-autocomplete-user-item-status.online {
    background-color: var(--success-100);
    color: var(--success-500);
}
.topbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}
.topbar-right > * {
    margin-right: 12px;
}
.topbar-right > :last-child {
    margin-right: 0;
}
.topbar-button-search {
    display: none;
}
.topbar-language-image {
    width: 24px;
}
.topbar-button-total {
    width: 16px;
    height: 16px;
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xxs);
    font-weight: 500;
}
.topbar-button-total-cart {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--danger-500);
    color: var(--white);
}
.topbar-button-total-notification {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-500);
    color: var(--white);
}
/* end: Main */

/* start: Dropdown Cart */
.dropdown-menu-cart {
    max-width: 320px;
    width: 100%;
}
.dropdown-menu-cart-wrapper {
    max-height: 300px;
    overflow-y: auto;
}
.dropdown-menu-cart-item {
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}
.dropdown-menu-cart-item-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 8px;
    border-radius: var(--rounded-lg);
}
.dropdown-menu-cart-item-info {
    min-width: 0;
    width: 100%;
    margin-right: 8px;
}
.dropdown-menu-cart-item-name {
    font-size: var(--text-sm);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 4px;
}
.dropdown-menu-cart-item-more {
    font-size: var(--text-xs);
    color: var(--neutral-500);
}
.dropdown-menu-cart-item-total {
    font-size: var(--text-sm);
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 8px;
}
.dropdown-menu-cart-item-remove {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: var(--text-sm);
    cursor: pointer;
    color: var(--neutral-500);
}
.dropdown-menu-cart-item-remove:hover {
    background-color: var(--neutral-100);
    color: var(--danger-500);
}
.dropdown-menu-cart-bottom {
    padding: 12px 12px 4px;
}
.dropdown-menu-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.dropdown-menu-cart-total-text {
    font-size: var(--text-sm);
    color: var(--neutral-500);
}
.dropdown-menu-cart-total-price {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--primary-500);
}
/* end: Dropdown Cart */

/* start: Dropdown Notification */
.dropdown-menu-notification {
    max-width: 320px;
    width: 100%;
}
.dropdown-menu-notification-wrapper {
    max-height: 300px;
    overflow-y: auto;
}
.dropdown-menu-notification-item {
    display: flex;
    text-decoration: none;
    padding: 8px 16px;
}
.dropdown-menu-notification-item:hover {
    background-color: var(--neutral-100);
}
.dropdown-menu-notification-item-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rounded-full);
    flex-shrink: 0;
    margin-right: 12px;
}
.dropdown-menu-notification-item-icon.success {
    background-color: var(--success-100);
    color: var(--success-500);
}
.dropdown-menu-notification-item-icon.danger {
    background-color: var(--danger-100);
    color: var(--danger-500);
}
.dropdown-menu-notification-item-icon.warning {
    background-color: var(--warning-100);
    color: var(--warning-500);
}
.dropdown-menu-notification-item-right {
    min-width: 0;
    width: 100%;
}
.dropdown-menu-notification-item-text {
    font-size: var(--text-sm);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 4px;
    color: var(--neutral-700);
}
.dropdown-menu-notification-item-time {
    font-size: var(--text-xs);
    color: var(--neutral-500);
}
/* end: Dropdown Notification */

/* start: Breakpoints */
@media screen and (max-width: 768px) {
    .sidebar-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 20;
        opacity: 0;
        visibility: hidden;
        transition-property: opacity, visibility;
        transition-duration: var(--duration-150);
    }
    body.sidebar-mobile-shown .sidebar-overlay {
        opacity: 1;
        visibility: visible;
    }
    body.sidebar-collapsed .sidebar,
    .sidebar {
        width: 240px;
        transform: translateX(-100%);
        transition-property: transform;
        transition-duration: var(--duration-150);
    }
    body.sidebar-mobile-shown .sidebar {
        transform: translateX(0);
    }
    body.sidebar-collapsed .sidebar-brand-image {
        margin-right: 12px;
    }
    body.sidebar-collapsed .sidebar-menu-item-title-collapsed {
        display: none;
    }
    body.sidebar-collapsed .sidebar-menu-item-title-expanded {
        display: block;
    }
    body.sidebar-collapsed .sidebar-menu-item-link-icon {
        margin-left: 0;
    }
    body.sidebar-collapsed .sidebar-menu-item-link-arrow {
        display: block;
    }
    body.sidebar-collapsed .sidebar-menu-item:hover > .sidebar-submenu {
        display: none;
    }
    body.sidebar-collapsed .main,
    .main {
        margin-left: 0;
    }
    .topbar-brand {
        display: flex;
        align-items: center;
        text-decoration: none;
        margin-right: 8px;
    }
    .topbar-brand-image {
        width: 32px;
    }
    .topbar-page-name {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .topbar-button-search {
        display: flex;
    }
    .topbar-search-form-wrapper {
        display: none;
    }
    .topbar-search-form-wrapper.active {
        display: flex;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: unset;
        background-color: var(--white);
        padding: 0 16px;
        z-index: 10;
    }
    .topbar-button-search-form-back {
        display: flex;
        margin-right: 8px;
    }
    .topbar-search-form-autocomplete {
        max-width: calc(100% - 32px);
    }

     .topbar-page-name {
        display: block;
    }

}
/* end: Breakpoints */
ol, ul {
    padding-left: 0rem;
}

.active-submenu {
    border-left: 3px solid #02114f;
}
/* .active-submenu .sidebar-submenu-item-link-text {
    color: #fff
} */
.active-menu {
    border-left: 3px solid #02114f;
    background-color: #e3e7f7;
}
/* .active-menu span {
    color: #fff;
} */

/* From Uiverse.io by sameer2malik */
.container-login {
    display: flex;
    width: 650px;
    height: 500px;
    max-width: 99%;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #ffffff25;
    /* border-radius: 15px; */
    /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.03); */
    /* border: 0.1px solid rgba(128, 128, 128, 0.178); */
    z-index: 1;
  }

  .left {
    width: 66%;
    height: 100%;
  }

  .form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    left: 0;

  }

  .form::before {
    position: absolute;
    content: "";
    width: 40%;
    height: 40%;
    right: 1%;
    z-index: -1;
    background: radial-gradient(
      circle,
      rgb(194, 13, 170) 20%,
      rgb(26, 186, 235) 60%,

      rgb(26, 186, 235) 100%
    );
    filter: blur(70px);
    border-radius: 50%;
  }

  .right {
    width: 34%;
    height: 100%;
    z-index: 1;
  }

  .img {
    width: 100%;
    height: 100%;
  }

  .container-login::after {
    position: absolute;
    content: "";
    width: 80%;
    height: 80%;
    right: -40%;
  }

  /* .input,
  .button-login {
    background: rgba(253, 253, 253, 0);
    outline: none;
    border: 1px solid rgba(255, 0, 0, 0);
    border-radius: 0.5rem;
    padding: 10px;
    margin: 10px;
    width: 80%;
    display: block;
    color: #425981;
    font-weight: 500;
    font-size: 1.1em;
  } */

  .input-block {
    position: relative;
  }

  label {

    position: absolute;
    left: 6%;
    top: 37%;
    pointer-events: none;
    color: gray;
  }

  .forgot {
    display: block;
    margin: 5px 0 10px 0;
    margin-left: 35px;
    color: #5e7eb6;
    font-size: 0.9em;
  }

  .input:focus + label,
  .input:valid + label {
    transform: translateY(-170%) scale(0.9);
    transition: all 0.4s;
  }

  .button-login {
    background-color: #5e7eb6;
    color: white;
    font-size: medium;
    box-shadow: 2px 4px 8px rgba(70, 70, 70, 0.178);
  }

  a {
    color: #5e7eb6;
  }

  /* .input {
    box-shadow: inset 4px 4px 4px rgba(165, 163, 163, 0.315),
      4px 4px 4px rgba(218, 218, 218, 0.13);
  } */

  /* From Uiverse.io by Javierrocadev */

  .card-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    gap: 15px; /* Optional: Space between cards */
    max-width: 100%; /* Adjust this to limit visible area */
}

.card-wrapper {
    max-width: 100%; /* Adjust width to fit 4 cards */
    overflow-x: auto;
}


.card-home {
    flex: 0 0 250px; /* Fixed width for each card */
    max-width: 250px;
    /* width: 250px; */
    height: 200px;
    border-radius: 15px;
    /* background: rgba(105, 13, 197, 0.103); */
    background: #5e7eb6;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 5px;
  }

  .card-home::before {
    content: "";
    height: 100px;
    width: 100px;
    position: absolute;
    top: -13%;
    left: -13%;
    border-radius: 50%;
    border: 35px solid rgba(255, 255, 255, 0.102);
    transition: all .8s ease;
    filter: blur(.5rem);
  }

  .text-home {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: row;
    color: aliceblue;
    font-weight: 900;
    font-size: 1.2em;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .subtitle-text {
    font-size: .6em;
    font-weight: 300;
    color: rgba(240, 248, 255, 0.691);
  }

  .icons-text {
    /* display: flex;
    justify-items: center;
    align-items: center; */
    /* width: 250px; */
    border-radius: 0px 0px 15px 15px;
    overflow: hidden;
    background-color: rgba(247, 234, 234, 0.589);
    text-align: center;
    padding: 10px;
    color: rgb(38, 59, 126);;
  }

  .btn-home {
    border: none;
    width: 84px;
    height: 35px;
    background-color: rgba(247, 234, 234, 0.589);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .svg-icon {
    width: 25px;
    height: 25px;
    stroke: rgb(38, 59, 126);
  }

  .btn-home:hover {
    background-color: rgb(247, 234, 234);
  }

  .card-home:hover::before {
    width: 140px;
    height: 140px;
    top: -30%;
    left: 50%;
    filter: blur(0rem);
  }

 .loginbgDiv {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientlogin 15s ease infinite;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 75%);
}

@keyframes gradientlogin {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
