body, html {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    height: 100%;
    overflow-x: hidden;
    
    scroll-behavior: smooth;
    
}

/* ================= HEADER ================= */
.home-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 99;
}

/* ================= BANNER ================= */
.home-banner {
    position: relative;
}

.home-banner-bg {
    position: absolute;
    top: -200px;
    left: -50px;
    right: -50px;
    height: 750px;
    transform: rotate(-5deg);
    border-radius: 200px;
    z-index: -1;
}

.home-banner-bg-color {
    background: linear-gradient(90deg, #1dbb90, #2ddeae);
}

/* ================= CONTENT ================= */
.home-content {
    background: #fff;
    position: relative;
    z-index: 5;
    margin-top: -80px;
    padding-top: 100px;
}

.home-content section {
    padding: 20px 0;
}

/* ================= LOGIN CARD ================= */
.card-login {
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(26,26,26,0.2);
}

/* ================= FOOTER ================= */
.home-footer {
    background: linear-gradient(90deg, #1dbb90, #2ddeae);
    padding: 20px;
    color: #fff;
}

