/* =========================
   Fonts
========================= */
@import url("/css/typography/_base-typography.css");
/* =========================
   Base
========================= */
html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    overflow-x: hidden;
    font-family: "Inter", Roboto, Helvetica, Arial, sans-serif !important;
}

/* =========================
   Focus styles (Bootstrap overrides)
========================= */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem #258cfb;
}

/* =========================
   Components
========================= */
.transparent-card {
    background: rgba(20, 20, 25, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.base-dark-bg-component {
    height: 100dvh;
    overflow-x: hidden !important;
    background-color: #021017;
    color: #ffffff;
    padding-top: 100px;
    background-image: url("../img/core/hero-background.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    top: 0;
}