@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

body {
    font-family: "Poppins", sans-serif;
}

/* ==================================================
   NEW MODE — AURORA GRADIENT
   ================================================== */

@media (min-width: 320px) {
    .custom-mt-btn {
        margin-top: 15px;
    }
}
@media (min-width: 640px) {
    .custom-mt-btn {
        margin-top: 42px;
    }
}
span.input-group-text {
    cursor: pointer;
}
@keyframes moveUp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.text-center.mb-3 {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Efek bayangan */
}
/* ==================================================
   PAGE TITLE — MODERN AURORA
   ================================================== */
.page-title {
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.02em;

    background: linear-gradient(90deg, #38bdf8, #818cf8);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 0.75rem;
}

/* Subtitle opsional */
.page-subtitle {
    color: #94a3b8;
    font-size: 0.95rem;
}

.page-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
}

.btn-theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: inherit;

    transition: 0.25s ease;
}

.btn-theme-toggle:hover {
    transform: rotate(15deg) scale(1.05);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

.btn-theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: inherit;

    transition: 0.25s ease;
}

.btn-theme-toggle:hover {
    transform: rotate(15deg) scale(1.05);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

/* ==================================================
   PAGE OFFSET — FIXED NAVBAR SAFE
   ================================================== */

/* default: mobile first */
.page-offset {
    padding-top: 66px; /* cukup aman utk navbar + breathing space */
}
@media (max-width: 580px) {
    .page-home {
        padding-top: 80px;
    }
    .page-document {
        padding-top: 100px;
    }
}
/* tablet */
@media (min-width: 768px) {
    .page-offset {
        padding-top: 60px;
    }
}

/* desktop */
@media (min-width: 1200px) {
    .page-offset {
        padding-top: 52px;
    }
}

/*------------ Login container ------------*/

.box-area {
    width: 930px;
}

/*------------ Right box ------------*/

.right-box {
    padding: 40px 30px 40px 40px;
}

/*------------ Custom Placeholder ------------*/

::placeholder {
    font-size: 16px;
}

.rounded-4 {
    border-radius: 20px;
}
.rounded-5 {
    border-radius: 30px;
}

/*------------ For small screens------------*/

/* CSS untuk button outline */
.btn-outline-custom {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #6c757d; /* Warna teks */
    background-color: transparent;
    border: 2px solid #6c757d; /* Warna border */
    border-radius: 0.5rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-outline-custom:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #6c757d; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #6c757d; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-outline-custom:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #6c757d; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #6c757d; /* Warna border saat aktif (abu-abu) */
}

/* CSS untuk button outline pink 400 */
.btn-outline-pink-400 {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #f472b6; /* Warna teks */
    background-color: transparent;
    border: 2px solid #f472b6; /* Warna border */
    border-radius: 0.5rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-outline-pink-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #f472b6; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #f472b6; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-outline-pink-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #f472b6; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #f472b6; /* Warna border saat aktif (abu-abu) */
}
/* CSS untuk button sm outline pink 400 */
.btn-sm-outline-pink-400 {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #f472b6; /* Warna teks */
    background-color: transparent;
    border: 1px solid #f472b6; /* Warna border */
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-sm-outline-pink-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #f472b6; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #f472b6; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-sm-outline-pink-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #f472b6; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #f472b6; /* Warna border saat aktif (abu-abu) */
}

/* CSS untuk button outline red 400 */
.btn-outline-red-400 {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #ef4444; /* Warna teks */
    background-color: transparent;
    border: 2px solid #ef4444; /* Warna border */
    border-radius: 0.5rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-outline-red-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #ef4444; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #ef4444; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-outline-red-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #ef4444; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #ef4444; /* Warna border saat aktif (abu-abu) */
}
/* CSS untuk button sm outline red 400 */
.btn-sm-outline-red-400 {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #ef4444; /* Warna teks */
    background-color: transparent;
    border: 1px solid #ef4444; /* Warna border */
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-sm-outline-red-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #ef4444; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #ef4444; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-sm-outline-red-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #ef4444; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #ef4444; /* Warna border saat aktif (abu-abu) */
}

/* CSS untuk button outline cyan 400 */
.btn-outline-cyan-400 {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #22d3ee; /* Warna teks */
    background-color: transparent;
    border: 2px solid #22d3ee; /* Warna border */
    border-radius: 0.5rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-outline-cyan-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #22d3ee; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #22d3ee; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-outline-cyan-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #22d3ee; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #22d3ee; /* Warna border saat aktif (abu-abu) */
}
/* CSS untuk button sm outline cyan 400 */
.btn-sm-outline-cyan-400 {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #22d3ee; /* Warna teks */
    background-color: transparent;
    border: 1px solid #22d3ee; /* Warna border */
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-sm-outline-cyan-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #22d3ee; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #22d3ee; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-sm-outline-cyan-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #22d3ee; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #22d3ee; /* Warna border saat aktif (abu-abu) */
}

/* CSS untuk button outline slate 400 */
.btn-outline-slate-400 {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #9ca3af; /* Warna teks */
    background-color: transparent;
    border: 2px solid #9ca3af; /* Warna border */
    border-radius: 0.5rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-outline-slate-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #9ca3af; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #9ca3af; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-outline-slate-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #9ca3af; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #9ca3af; /* Warna border saat aktif (abu-abu) */
}
/* CSS untuk button sm outline slate 400 */
.btn-sm-outline-slate-400 {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #9ca3af; /* Warna teks */
    background-color: transparent;
    border: 1px solid #9ca3af; /* Warna border */
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-sm-outline-slate-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #9ca3af; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #9ca3af; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-sm-outline-slate-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #9ca3af; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #9ca3af; /* Warna border saat aktif (abu-abu) */
}

/* background slate */
.bg-slate-50 {
    background-color: #f8fafc;
}
.bg-slate-100 {
    background-color: #f1f5f9;
}
.bg-slate-200 {
    background-color: #e2e8f0;
}
.bg-slate-300 {
    background-color: #cbd5e1;
}
.bg-slate-400 {
    background-color: #94a3b8;
}
.bg-slate-500 {
    background-color: #64748b;
}
.bg-slate-600 {
    background-color: #475569;
}
.bg-slate-700 {
    background-color: #334155;
}
.bg-slate-800 {
    background-color: #1e293b;
}
.bg-slate-900 {
    background-color: #111827;
}
.bg-slate-950 {
    background-color: #030712;
}
/* text color slate */
.text-slate-50 {
    color: #f8fafc;
}
.text-slate-100 {
    color: #f1f5f9;
}
.text-slate-200 {
    color: #e2e8f0;
}
.text-slate-300 {
    color: #cbd5e1;
}
.text-slate-400 {
    color: #94a3b8;
}
.text-slate-500 {
    color: #64748b;
}
.text-slate-600 {
    color: #475569;
}
.text-slate-700 {
    color: #334155;
}
.text-slate-800 {
    color: #1e293b;
}
.text-slate-900 {
    color: #0f172a;
}
.text-slate-950 {
    color: #030712;
}

/* background gray */
.bg-gray-50 {
    background-color: #f9fafb;
}
.bg-gray-100 {
    background-color: #f3f4f6;
}
.bg-gray-200 {
    background-color: #e5e7eb;
}
.bg-gray-300 {
    background-color: #d1d5db;
}
.bg-gray-400 {
    background-color: #9ca3af;
}
.bg-gray-500 {
    background-color: #6b7280;
}
.bg-gray-600 {
    background-color: #4b5563;
}
.bg-gray-700 {
    background-color: #374151;
}
.bg-gray-800 {
    background-color: #1f2937;
}
.bg-gray-900 {
    background-color: #111827;
}
.bg-gray-950 {
    background-color: #020617;
}
/* text color gray */
.text-gray-50 {
    color: #f9fafb;
}
.text-gray-100 {
    color: #f3f4f6;
}
.text-gray-200 {
    color: #e5e7eb;
}
.text-gray-300 {
    color: #d1d5db;
}
.text-gray-400 {
    color: #9ca3af;
}
.text-gray-500 {
    color: #6b7280;
}
.text-gray-600 {
    color: #4b5563;
}
.text-gray-700 {
    color: #374151;
}
.text-gray-800 {
    color: #1f2937;
}
.text-gray-900 {
    color: #111827;
}
.text-gray-950 {
    color: #020617;
}

/* background zinc */
.bg-zinc-50 {
    background-color: #fafafa;
}
.bg-zinc-100 {
    background-color: #f4f4f5;
}
.bg-zinc-200 {
    background-color: #e4e4e7;
}
.bg-zinc-300 {
    background-color: #d4d4d8;
}
.bg-zinc-400 {
    background-color: #a1a1aa;
}
.bg-zinc-500 {
    background-color: #71717a;
}
.bg-zinc-600 {
    background-color: #52525b;
}
.bg-zinc-700 {
    background-color: #3f3f46;
}
.bg-zinc-800 {
    background-color: #27272a;
}
.bg-zinc-900 {
    background-color: #18181b;
}
.bg-zinc-950 {
    background-color: #09090b;
}
/* text color zinc */
.text-zinc-50 {
    color: #fafafa;
}
.text-zinc-100 {
    color: #f4f4f5;
}
.text-zinc-200 {
    color: #e4e4e7;
}
.text-zinc-300 {
    color: #d4d4d8;
}
.text-zinc-400 {
    color: #a1a1aa;
}
.text-zinc-500 {
    color: #71717a;
}
.text-zinc-600 {
    color: #52525b;
}
.text-zinc-700 {
    color: #3f3f46;
}
.text-zinc-800 {
    color: #27272a;
}
.text-zinc-900 {
    color: #18181b;
}
.text-zinc-950 {
    color: #09090b;
}

/* background neutral */
.bg-neutral-50 {
    background-color: #fafafa;
}
.bg-neutral-100 {
    background-color: #f5f5f5;
}
.bg-neutral-200 {
    background-color: #e5e5e5;
}
.bg-neutral-300 {
    background-color: #d4d4d4;
}
.bg-neutral-400 {
    background-color: #a3a3a3;
}
.bg-neutral-500 {
    background-color: #737373;
}
.bg-neutral-600 {
    background-color: #525252;
}
.bg-neutral-700 {
    background-color: #404040;
}
.bg-neutral-800 {
    background-color: #262626;
}
.bg-neutral-900 {
    background-color: #171717;
}
.bg-neutral-950 {
    background-color: #0a0a0a;
}
/* text color neutral */
.text-neutral-50 {
    color: #fafafa;
}
.text-neutral-100 {
    color: #f5f5f5;
}
.text-neutral-200 {
    color: #e5e5e5;
}
.text-neutral-300 {
    color: #d4d4d4;
}
.text-neutral-400 {
    color: #a3a3a3;
}
.text-neutral-500 {
    color: #737373;
}
.text-neutral-600 {
    color: #525252;
}
.text-neutral-700 {
    color: #404040;
}
.text-neutral-800 {
    color: #262626;
}
.text-neutral-900 {
    color: #171717;
}
.text-neutral-950 {
    color: #0a0a0a;
}

/* background stone */
.bg-stone-50 {
    background-color: #fafaf9;
}
.bg-stone-100 {
    background-color: #f5f5f4;
}
.bg-stone-200 {
    background-color: #e7e5e4;
}
.bg-stone-300 {
    background-color: #d6d3d1;
}
.bg-stone-400 {
    background-color: #a8a29e;
}
.bg-stone-500 {
    background-color: #78716c;
}
.bg-stone-600 {
    background-color: #57534e;
}
.bg-stone-700 {
    background-color: #44403c;
}
.bg-stone-800 {
    background-color: #292524;
}
.bg-stone-900 {
    background-color: #1c1917;
}
.bg-stone-950 {
    background-color: #0c0a09;
}
/* text color stone */
.text-stone-50 {
    color: #fafaf9;
}
.text-stone-100 {
    color: #f5f5f4;
}
.text-stone-200 {
    color: #e7e5e4;
}
.text-stone-300 {
    color: #d6d3d1;
}
.text-stone-400 {
    color: #a8a29e;
}
.text-stone-500 {
    color: #78716c;
}
.text-stone-600 {
    color: #57534e;
}
.text-stone-700 {
    color: #44403c;
}
.text-stone-800 {
    color: #292524;
}
.text-stone-900 {
    color: #1c1917;
}
.text-stone-950 {
    color: #0c0a09;
}

/* background red */
.bg-red-50 {
    background-color: #fef2f2;
}
.bg-red-100 {
    background-color: #fee2e2;
}
.bg-red-200 {
    background-color: #fecaca;
}
.bg-red-300 {
    background-color: #fca5a5;
}
.bg-red-400 {
    background-color: #f87171;
}
.bg-red-500 {
    background-color: #ef4444;
}
.bg-red-600 {
    background-color: #dc2626;
}
.bg-red-700 {
    background-color: #b91c1c;
}
.bg-red-800 {
    background-color: #991b1b;
}
.bg-red-900 {
    background-color: #7f1d1d;
}
.bg-red-950 {
    background-color: #450a0a;
}
/* text color red */
.text-red-50 {
    color: #fef2f2;
}
.text-red-100 {
    color: #fee2e2;
}
.text-red-200 {
    color: #fecaca;
}
.text-red-300 {
    color: #fca5a5;
}
.text-red-400 {
    color: #f87171;
}
.text-red-500 {
    color: #ef4444;
}
.text-red-600 {
    color: #dc2626;
}
.text-red-700 {
    color: #b91c1c;
}
.text-red-800 {
    color: #991b1b;
}
.text-red-900 {
    color: #7f1d1d;
}
.text-red-950 {
    color: #450a0a;
}

/* background orange */
.bg-orange-50 {
    background-color: #fff7ed;
}
.bg-orange-100 {
    background-color: #ffedd5;
}
.bg-orange-200 {
    background-color: #fed7aa;
}
.bg-orange-300 {
    background-color: #fdba74;
}
.bg-orange-400 {
    background-color: #fb923c;
}
.bg-orange-500 {
    background-color: #f97316;
}
.bg-orange-600 {
    background-color: #ea580c;
}
.bg-orange-700 {
    background-color: #c2410c;
}
.bg-orange-800 {
    background-color: #9a3412;
}
.bg-orange-900 {
    background-color: #7c2d12;
}
.bg-orange-950 {
    background-color: #431407;
}
/* text color orange */
.text-orange-50 {
    color: #fff7ed;
}
.text-orange-100 {
    color: #ffedd5;
}
.text-orange-200 {
    color: #fed7aa;
}
.text-orange-300 {
    color: #fdba74;
}
.text-orange-400 {
    color: #fb923c;
}
.text-orange-500 {
    color: #f97316;
}
.text-orange-600 {
    color: #ea580c;
}
.text-orange-700 {
    color: #c2410c;
}
.text-orange-800 {
    color: #9a3412;
}
.text-orange-900 {
    color: #7c2d12;
}
.text-orange-950 {
    color: #431407;
}

/* background amber */
.bg-amber-50 {
    background-color: #fffbeb;
}
.bg-amber-100 {
    background-color: #fef3c7;
}
.bg-amber-200 {
    background-color: #fde68a;
}
.bg-amber-300 {
    background-color: #fcd34d;
}
.bg-amber-400 {
    background-color: #fbbf24;
}
.bg-amber-500 {
    background-color: #f59e0b;
}
.bg-amber-600 {
    background-color: #d97706;
}
.bg-amber-700 {
    background-color: #b45309;
}
.bg-amber-800 {
    background-color: #92400e;
}
.bg-amber-900 {
    background-color: #78350f;
}
.bg-amber-950 {
    background-color: #451a03;
}
/* text color amber */
.text-amber-50 {
    color: #fffbeb;
}
.text-amber-100 {
    color: #fef3c7;
}
.text-amber-200 {
    color: #fde68a;
}
.text-amber-300 {
    color: #fcd34d;
}
.text-amber-400 {
    color: #fbbf24;
}
.text-amber-500 {
    color: #f59e0b;
}
.text-amber-600 {
    color: #d97706;
}
.text-amber-700 {
    color: #b45309;
}
.text-amber-800 {
    color: #92400e;
}
.text-amber-900 {
    color: #78350f;
}
.text-amber-950 {
    color: #451a03;
}

/* background yellow */
.bg-yellow-50 {
    background-color: #fefce8;
}
.bg-yellow-100 {
    background-color: #fef9c3;
}
.bg-yellow-200 {
    background-color: #fef08a;
}
.bg-yellow-300 {
    background-color: #fde047;
}
.bg-yellow-400 {
    background-color: #facc15;
}
.bg-yellow-500 {
    background-color: #eab308;
}
.bg-yellow-600 {
    background-color: #ca8a04;
}
.bg-yellow-700 {
    background-color: #a16207;
}
.bg-yellow-800 {
    background-color: #854d0e;
}
.bg-yellow-900 {
    background-color: #713f12;
}
.bg-yellow-950 {
    background-color: #422006;
}
/* text color yellow */
.text-yellow-50 {
    color: #fefce8;
}
.text-yellow-100 {
    color: #fef9c3;
}
.text-yellow-200 {
    color: #fef08a;
}
.text-yellow-300 {
    color: #fde047;
}
.text-yellow-400 {
    color: #facc15;
}
.text-yellow-500 {
    color: #eab308;
}
.text-yellow-600 {
    color: #ca8a04;
}
.text-yellow-700 {
    color: #a16207;
}
.text-yellow-800 {
    color: #854d0e;
}
.text-yellow-900 {
    color: #713f12;
}
.text-yellow-950 {
    color: #422006;
}

/* background lime */
.bg-lime-50 {
    background-color: #f7fee7;
}
.bg-lime-100 {
    background-color: #ecfccb;
}
.bg-lime-200 {
    background-color: #d9f99d;
}
.bg-lime-300 {
    background-color: #bef264;
}
.bg-lime-400 {
    background-color: #a3e635;
}
.bg-lime-500 {
    background-color: #84cc16;
}
.bg-lime-600 {
    background-color: #65a30d;
}
.bg-lime-700 {
    background-color: #4d7c0f;
}
.bg-lime-800 {
    background-color: #3f6212;
}
.bg-lime-900 {
    background-color: #365314;
}
.bg-lime-950 {
    background-color: #1a2e05;
}
/* text color lime */
.text-lime-50 {
    color: #f7fee7;
}
.text-lime-100 {
    color: #ecfccb;
}
.text-lime-200 {
    color: #d9f99d;
}
.text-lime-300 {
    color: #bef264;
}
.text-lime-400 {
    color: #a3e635;
}
.text-lime-500 {
    color: #84cc16;
}
.text-lime-600 {
    color: #65a30d;
}
.text-lime-700 {
    color: #4d7c0f;
}
.text-lime-800 {
    color: #3f6212;
}
.text-lime-900 {
    color: #365314;
}
.text-lime-950 {
    color: #1a2e05;
}

/* background green */
.bg-green-50 {
    background-color: #f0fdf4;
}
.bg-green-100 {
    background-color: #dcfce7;
}
.bg-green-200 {
    background-color: #bbf7d0;
}
.bg-green-300 {
    background-color: #86efac;
}
.bg-green-400 {
    background-color: #4ade80;
}
.bg-green-500 {
    background-color: #22c55e;
}
.bg-green-600 {
    background-color: #16a34a;
}
.bg-green-700 {
    background-color: #15803d;
}
.bg-green-800 {
    background-color: #166534;
}
.bg-green-900 {
    background-color: #14532d;
}
.bg-green-950 {
    background-color: #052e16;
}
/* text color green */
.text-green-50 {
    color: #f0fdf4;
}
.text-green-100 {
    color: #dcfce7;
}
.text-green-200 {
    color: #bbf7d0;
}
.text-green-300 {
    color: #86efac;
}
.text-green-400 {
    color: #4ade80;
}
.text-green-500 {
    color: #22c55e;
}
.text-green-600 {
    color: #16a34a;
}
.text-green-700 {
    color: #15803d;
}
.text-green-800 {
    color: #166534;
}
.text-green-900 {
    color: #14532d;
}
.text-green-950 {
    color: #052e16;
}

/* background emerald */
.bg-emerald-50 {
    background-color: #ecfdf5;
}
.bg-emerald-100 {
    background-color: #d1fae5;
}
.bg-emerald-200 {
    background-color: #a7f3d0;
}
.bg-emerald-300 {
    background-color: #6ee7b7;
}
.bg-emerald-400 {
    background-color: #34d399;
}
.bg-emerald-500 {
    background-color: #10b981;
}
.bg-emerald-600 {
    background-color: #059669;
}
.bg-emerald-700 {
    background-color: #047857;
}
.bg-emerald-800 {
    background-color: #065f46;
}
.bg-emerald-900 {
    background-color: #064e3b;
}
.bg-emerald-950 {
    background-color: #022c22;
}
/* text color emerald */
.text-emerald-50 {
    color: #ecfdf5;
}
.text-emerald-100 {
    color: #d1fae5;
}
.text-emerald-200 {
    color: #a7f3d0;
}
.text-emerald-300 {
    color: #6ee7b7;
}
.text-emerald-400 {
    color: #34d399;
}
.text-emerald-500 {
    color: #10b981;
}
.text-emerald-600 {
    color: #059669;
}
.text-emerald-700 {
    color: #047857;
}
.text-emerald-800 {
    color: #065f46;
}
.text-emerald-900 {
    color: #064e3b;
}
.text-emerald-950 {
    color: #022c22;
}

/* background teal */
.bg-teal-50 {
    background-color: #f0fdfa;
}
.bg-teal-100 {
    background-color: #ccfbf1;
}
.bg-teal-200 {
    background-color: #99f6e4;
}
.bg-teal-300 {
    background-color: #5eead4;
}
.bg-teal-400 {
    background-color: #2dd4bf;
}
.bg-teal-500 {
    background-color: #14b8a6;
}
.bg-teal-600 {
    background-color: #0d9488;
}
.bg-teal-700 {
    background-color: #0f766e;
}
.bg-teal-800 {
    background-color: #115e59;
}
.bg-teal-900 {
    background-color: #134e4a;
}
.bg-teal-950 {
    background-color: #042f2e;
}
/* text color teal */
.text-teal-50 {
    color: #f0fdfa;
}
.text-teal-100 {
    color: #ccfbf1;
}
.text-teal-200 {
    color: #99f6e4;
}
.text-teal-300 {
    color: #5eead4;
}
.text-teal-400 {
    color: #2dd4bf;
}
.text-teal-500 {
    color: #14b8a6;
}
.text-teal-600 {
    color: #0d9488;
}
.text-teal-700 {
    color: #0f766e;
}
.text-teal-800 {
    color: #115e59;
}
.text-teal-900 {
    color: #134e4a;
}
.text-teal-950 {
    color: #042f2e;
}

/* background cyan */
.bg-cyan-50 {
    background-color: #ecfeff;
}
.bg-cyan-100 {
    background-color: #cffafe;
}
.bg-cyan-200 {
    background-color: #a5f3fc;
}
.bg-cyan-300 {
    background-color: #67e8f9;
}
.bg-cyan-400 {
    background-color: #22d3ee;
}
.bg-cyan-500 {
    background-color: #06b6d4;
}
.bg-cyan-600 {
    background-color: #0891b2;
}
.bg-cyan-700 {
    background-color: #0e7490;
}
.bg-cyan-800 {
    background-color: #155e75;
}
.bg-cyan-900 {
    background-color: #164e63;
}
.bg-cyan-950 {
    background-color: #083344;
}
/* text color cyan */
.text-cyan-50 {
    color: #ecfeff;
}
.text-cyan-100 {
    color: #cffafe;
}
.text-cyan-200 {
    color: #a5f3fc;
}
.text-cyan-300 {
    color: #67e8f9;
}
.text-cyan-400 {
    color: #22d3ee;
}
.text-cyan-500 {
    color: #06b6d4;
}
.text-cyan-600 {
    color: #0891b2;
}
.text-cyan-700 {
    color: #0e7490;
}
.text-cyan-800 {
    color: #155e75;
}
.text-cyan-900 {
    color: #164e63;
}
.text-cyan-950 {
    color: #083344;
}

/* background sky */
.bg-sky-50 {
    background-color: #f0f9ff;
}
.bg-sky-100 {
    background-color: #e0f2fe;
}
.bg-sky-200 {
    background-color: #bae6fd;
}
.bg-sky-300 {
    background-color: #7dd3fc;
}
.bg-sky-400 {
    background-color: #38bdf8;
}
.bg-sky-500 {
    background-color: #0ea5e9;
}
.bg-sky-600 {
    background-color: #0284c7;
}
.bg-sky-700 {
    background-color: #0369a1;
}
.bg-sky-800 {
    background-color: #075985;
}
.bg-sky-900 {
    background-color: #0c4a6e;
}
.bg-sky-950 {
    background-color: #082f49;
}
/* text color sky */
.text-sky-50 {
    color: #f0f9ff;
}
.text-sky-100 {
    color: #e0f2fe;
}
.text-sky-200 {
    color: #bae6fd;
}
.text-sky-300 {
    color: #7dd3fc;
}
.text-sky-400 {
    color: #38bdf8;
}
.text-sky-500 {
    color: #0ea5e9;
}
.text-sky-600 {
    color: #0284c7;
}
.text-sky-700 {
    color: #0369a1;
}
.text-sky-800 {
    color: #075985;
}
.text-sky-900 {
    color: #0c4a6e;
}
.text-sky-950 {
    color: #082f49;
}

/* background blue */
.bg-blue-50 {
    background-color: #eff6ff;
}
.bg-blue-100 {
    background-color: #dbeafe;
}
.bg-blue-200 {
    background-color: #bfdbfe;
}
.bg-blue-300 {
    background-color: #93c5fd;
}
.bg-blue-400 {
    background-color: #60a5fa;
}
.bg-blue-500 {
    background-color: #3b82f6;
}
.bg-blue-600 {
    background-color: #2563eb;
}
.bg-blue-700 {
    background-color: #1d4ed8;
}
.bg-blue-800 {
    background-color: #1e40af;
}
.bg-blue-900 {
    background-color: #1e3a8a;
}
.bg-blue-950 {
    background-color: #172554;
}
/* text color blue */
.text-blue-50 {
    color: #eff6ff;
}
.text-blue-100 {
    color: #dbeafe;
}
.text-blue-200 {
    color: #bfdbfe;
}
.text-blue-300 {
    color: #93c5fd;
}
.text-blue-400 {
    color: #60a5fa;
}
.text-blue-500 {
    color: #3b82f6;
}
.text-blue-600 {
    color: #2563eb;
}
.text-blue-700 {
    color: #1d4ed8;
}
.text-blue-800 {
    color: #1e40af;
}
.text-blue-900 {
    color: #1e3a8a;
}
.text-blue-950 {
    color: #172554;
}

/* background indigo */
.bg-indigo-50 {
    background-color: #eef2ff;
}
.bg-indigo-100 {
    background-color: #e0e7ff;
}
.bg-indigo-200 {
    background-color: #c7d2fe;
}
.bg-indigo-300 {
    background-color: #a5b4fc;
}
.bg-indigo-400 {
    background-color: #818cf8;
}
.bg-indigo-500 {
    background-color: #6366f1;
}
.bg-indigo-600 {
    background-color: #4f46e5;
}
.bg-indigo-700 {
    background-color: #4338ca;
}
.bg-indigo-800 {
    background-color: #3730a3;
}
.bg-indigo-900 {
    background-color: #312e81;
}
.bg-indigo-950 {
    background-color: #1e1b4b;
}
/* text color indigo */
.text-indigo-50 {
    color: #eef2ff;
}
.text-indigo-100 {
    color: #e0e7ff;
}
.text-indigo-200 {
    color: #c7d2fe;
}
.text-indigo-300 {
    color: #a5b4fc;
}
.text-indigo-400 {
    color: #818cf8;
}
.text-indigo-500 {
    color: #6366f1;
}
.text-indigo-600 {
    color: #4f46e5;
}
.text-indigo-700 {
    color: #4338ca;
}
.text-indigo-800 {
    color: #3730a3;
}
.text-indigo-900 {
    color: #312e81;
}
.text-indigo-950 {
    color: #1e1b4b;
}

/* background violet */
.bg-violet-50 {
    background-color: #f5f3ff;
}
.bg-violet-100 {
    background-color: #ede9fe;
}
.bg-violet-200 {
    background-color: #ddd6fe;
}
.bg-violet-300 {
    background-color: #c4b5fd;
}
.bg-violet-400 {
    background-color: #a78bfa;
}
.bg-violet-500 {
    background-color: #8b5cf6;
}
.bg-violet-600 {
    background-color: #7c3aed;
}
.bg-violet-700 {
    background-color: #6d28d9;
}
.bg-violet-800 {
    background-color: #5b21b6;
}
.bg-violet-900 {
    background-color: #4c1d95;
}
.bg-violet-950 {
    background-color: #2e1065;
}
/* text color violet */
.text-violet-50 {
    color: #f5f3ff;
}
.text-violet-100 {
    color: #ede9fe;
}
.text-violet-200 {
    color: #ddd6fe;
}
.text-violet-300 {
    color: #c4b5fd;
}
.text-violet-400 {
    color: #a78bfa;
}
.text-violet-500 {
    color: #8b5cf6;
}
.text-violet-600 {
    color: #7c3aed;
}
.text-violet-700 {
    color: #6d28d9;
}
.text-violet-800 {
    color: #5b21b6;
}
.text-violet-900 {
    color: #4c1d95;
}
.text-violet-950 {
    color: #2e1065;
}

/* background purple */
.bg-purple-50 {
    background-color: #faf5ff;
}
.bg-purple-100 {
    background-color: #f3e8ff;
}
.bg-purple-200 {
    background-color: #e9d5ff;
}
.bg-purple-300 {
    background-color: #d8b4fe;
}
.bg-purple-400 {
    background-color: #c084fc;
}
.bg-purple-500 {
    background-color: #a855f7;
}
.bg-purple-600 {
    background-color: #9333ea;
}
.bg-purple-700 {
    background-color: #7e22ce;
}
.bg-purple-800 {
    background-color: #6b21a8;
}
.bg-purple-900 {
    background-color: #581c87;
}
.bg-purple-950 {
    background-color: #3b0764;
}
/* text color purple */
.text-purple-50 {
    color: #faf5ff;
}
.text-purple-100 {
    color: #f3e8ff;
}
.text-purple-200 {
    color: #e9d5ff;
}
.text-purple-300 {
    color: #d8b4fe;
}
.text-purple-400 {
    color: #c084fc;
}
.text-purple-500 {
    color: #a855f7;
}
.text-purple-600 {
    color: #9333ea;
}
.text-purple-700 {
    color: #7e22ce;
}
.text-purple-800 {
    color: #6b21a8;
}
.text-purple-900 {
    color: #581c87;
}
.text-purple-950 {
    color: #3b0764;
}

/* background fuchsia */
.bg-fuchsia-50 {
    background-color: #fdf4ff;
}
.bg-fuchsia-100 {
    background-color: #fce7f3;
}
.bg-fuchsia-200 {
    background-color: #f5d0fe;
}
.bg-fuchsia-300 {
    background-color: #f0abfc;
}
.bg-fuchsia-400 {
    background-color: #e879f9;
}
.bg-fuchsia-500 {
    background-color: #d946ef;
}
.bg-fuchsia-600 {
    background-color: #c026d3;
}
.bg-fuchsia-700 {
    background-color: #a21caf;
}
.bg-fuchsia-800 {
    background-color: #86198f;
}
.bg-fuchsia-900 {
    background-color: #701a75;
}
.bg-fuchsia-950 {
    background-color: #4a044e;
}
/* text color fuchsia */
.text-fuchsia-50 {
    color: #fdf4ff;
}
.text-fuchsia-100 {
    color: #fce7f3;
}
.text-fuchsia-200 {
    color: #f5d0fe;
}
.text-fuchsia-300 {
    color: #f0abfc;
}
.text-fuchsia-400 {
    color: #e879f9;
}
.text-fuchsia-500 {
    color: #d946ef;
}
.text-fuchsia-600 {
    color: #c026d3;
}
.text-fuchsia-700 {
    color: #a21caf;
}
.text-fuchsia-800 {
    color: #86198f;
}
.text-fuchsia-900 {
    color: #701a75;
}
.text-fuchsia-950 {
    color: #4a044e;
}

/* background pink */
.bg-pink-50 {
    background-color: #fdf2f8;
}
.bg-pink-100 {
    background-color: #fce7f3;
}
.bg-pink-200 {
    background-color: #fbcfe8;
}
.bg-pink-300 {
    background-color: #f9a8d4;
}
.bg-pink-400 {
    background-color: #f472b6;
}
.bg-pink-500 {
    background-color: #ec4899;
}
.bg-pink-600 {
    background-color: #db2777;
}
.bg-pink-700 {
    background-color: #be185d;
}
.bg-pink-800 {
    background-color: #9d174d;
}
.bg-pink-900 {
    background-color: #831843;
}
.bg-pink-950 {
    background-color: #500724;
}
/* text color pink */
.text-pink-50 {
    color: #fdf2f8;
}
.text-pink-100 {
    color: #fce7f3;
}
.text-pink-200 {
    color: #fbcfe8;
}
.text-pink-300 {
    color: #f9a8d4;
}
.text-pink-400 {
    color: #f472b6;
}
.text-pink-500 {
    color: #ec4899;
}
.text-pink-600 {
    color: #db2777;
}
.text-pink-700 {
    color: #be185d;
}
.text-pink-800 {
    color: #9d174d;
}
.text-pink-900 {
    color: #831843;
}
.text-pink-950 {
    color: #500724;
}
/* background rose */
.bg-rose-50 {
    background-color: #fff1f2;
}
.bg-rose-100 {
    background-color: #ffe4e6;
}
.bg-rose-200 {
    background-color: #fecdd3;
}
.bg-rose-300 {
    background-color: #fda4af;
}
.bg-rose-400 {
    background-color: #fb7185;
}
.bg-rose-500 {
    background-color: #f43f5e;
}
.bg-rose-600 {
    background-color: #e11d48;
}
.bg-rose-700 {
    background-color: #be123c;
}
.bg-rose-800 {
    background-color: #9f1239;
}
.bg-rose-900 {
    background-color: #881337;
}
.bg-rose-950 {
    background-color: #4c0519;
}
/* text color rose */
.text-rose-50 {
    color: #fff1f2;
}
.text-rose-100 {
    color: #ffe4e6;
}
.text-rose-200 {
    color: #fecdd3;
}
.text-rose-300 {
    color: #fda4af;
}
.text-rose-400 {
    color: #fb7185;
}
.text-rose-500 {
    color: #f43f5e;
}
.text-rose-600 {
    color: #e11d48;
}
.text-rose-700 {
    color: #be123c;
}
.text-rose-800 {
    color: #9f1239;
}
.text-rose-900 {
    color: #881337;
}
.text-rose-950 {
    color: #4c0519;
}

/* animation */
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.bounce-element {
    position: fixed;
    bottom: 50px;
    right: 20px;
    animation: bounce 2s infinite;
    z-index: 99;
}

@media only screen and (min-width: 1289px) {
    .bounce-element {
        right: 100px;
    }
}
@media only screen and (min-width: 1440px) {
    .bounce-element {
        right: 160px;
    }
}

.custom-rounded-start {
    border-radius: 40px 0px 0px 40px;
}
.custom-rounded-end {
    border-radius: 0px 40px 40px 0px;
}

.bg-custom-login {
    background: linear-gradient(to right, white 50%, #ec4899 50%);
}

/* CSS untuk button outline */
.btn-outline-custom {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #6c757d; /* Warna teks */
    background-color: transparent;
    border: 2px solid #6c757d; /* Warna border */
    border-radius: 0.5rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-outline-custom:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #6c757d; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #6c757d; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-outline-custom:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #6c757d; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #6c757d; /* Warna border saat aktif (abu-abu) */
}

/* CSS untuk button outline pink 400 */
.btn-outline-pink-400 {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #f472b6; /* Warna teks */
    background-color: transparent;
    border: 2px solid #f472b6; /* Warna border */
    border-radius: 0.5rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-outline-pink-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #f472b6; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #f472b6; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-outline-pink-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #f472b6; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #f472b6; /* Warna border saat aktif (abu-abu) */
}
/* CSS untuk button sm outline pink 400 */
.btn-sm-outline-pink-400 {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #f472b6; /* Warna teks */
    background-color: transparent;
    border: 1px solid #f472b6; /* Warna border */
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-sm-outline-pink-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #f472b6; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #f472b6; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-sm-outline-pink-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #f472b6; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #f472b6; /* Warna border saat aktif (abu-abu) */
}

/* CSS untuk button outline red 400 */
.btn-outline-red-400 {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #ef4444; /* Warna teks */
    background-color: transparent;
    border: 2px solid #ef4444; /* Warna border */
    border-radius: 0.5rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-outline-red-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #ef4444; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #ef4444; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-outline-red-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #ef4444; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #ef4444; /* Warna border saat aktif (abu-abu) */
}
/* CSS untuk button sm outline red 400 */
.btn-sm-outline-red-400 {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #ef4444; /* Warna teks */
    background-color: transparent;
    border: 1px solid #ef4444; /* Warna border */
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-sm-outline-red-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #ef4444; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #ef4444; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-sm-outline-red-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #ef4444; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #ef4444; /* Warna border saat aktif (abu-abu) */
}

/* CSS untuk button outline cyan 400 */
.btn-outline-cyan-400 {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #22d3ee; /* Warna teks */
    background-color: transparent;
    border: 2px solid #22d3ee; /* Warna border */
    border-radius: 0.5rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-outline-cyan-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #22d3ee; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #22d3ee; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-outline-cyan-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #22d3ee; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #22d3ee; /* Warna border saat aktif (abu-abu) */
}
/* CSS untuk button sm outline cyan 400 */
.btn-sm-outline-cyan-400 {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #22d3ee; /* Warna teks */
    background-color: transparent;
    border: 1px solid #22d3ee; /* Warna border */
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-sm-outline-cyan-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #22d3ee; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #22d3ee; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-sm-outline-cyan-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #22d3ee; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #22d3ee; /* Warna border saat aktif (abu-abu) */
}

/* CSS untuk button outline slate 400 */
.btn-outline-slate-400 {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #9ca3af; /* Warna teks */
    background-color: transparent;
    border: 2px solid #9ca3af; /* Warna border */
    border-radius: 0.5rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-outline-slate-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #9ca3af; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #9ca3af; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-outline-slate-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #9ca3af; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #9ca3af; /* Warna border saat aktif (abu-abu) */
}
/* CSS untuk button sm outline slate 400 */
.btn-sm-outline-slate-400 {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #9ca3af; /* Warna teks */
    background-color: transparent;
    border: 1px solid #9ca3af; /* Warna border */
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/* Hover effect */
.btn-sm-outline-slate-400:hover {
    color: #fff; /* Warna teks pada hover (ungu) */
    background-color: #9ca3af; /* Warna latar belakang pada hover (abu-abu) */
    border-color: #9ca3af; /* Warna border pada hover (abu-abu) */
}

/* Active (clicked) effect */
.btn-sm-outline-slate-400:active {
    color: #fff; /* Warna teks saat aktif (ungu) */
    background-color: #9ca3af; /* Warna latar belakang saat aktif (abu-abu) */
    border-color: #9ca3af; /* Warna border saat aktif (abu-abu) */
}
