:root, body {
    font-family: "Poppins", sans-serif;
    color: #000000;
    background: #f4f7f6;

	background-image:
		linear-gradient(rgba(0, 82, 204, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 82, 204, 0.035) 1px, transparent 1px);

	background-size: 4rem 4em;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    letter-spacing: clamp(.45px, .1vw, .8px);
    line-height: 1.4;
    word-spacing: 0.02rem;

    --primary-blue: #0052CC;
    --gradient-start: #0052CC;
    --gradient-end: #3a9cfd;
    --bg-color: #F4F6F8;
    --text-dark: #172B4D;
    --text-grey: #6B778C;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(12.45px, 1.3vw, 17px) !important;
}

footer>div,
main > div {
    width: 100%;
    max-width: 85rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ================= UTIL ================= */
main {
    display: flex;
    justify-content: center;
}

.min-h-safe {
    min-height: calc(100vh - 4rem);
}
@supports (height: 100svh) {
    .min-h-safe{
        min-height: calc(100svh - 4rem);
    }
}

.min-h-full-safe {
    min-height: 100vh;
}
@supports (height: 100svh) {
    .min-h-full-safe{
        min-height: 100svh;
    }
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}


/* sweetalert.css */
.swal-actions-vertical {display: flex;flex-direction: column;gap: 0;}
.swal-actions-vertical button {width: 100%;}

[x-cloak] { display: none !important; }