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

:root {
    --theme-color: #0372c7;
    --theme-color-2: #060707;
    --theme-color-3: #12a2dc;
    --theme-color-4: #172f37;
}

a {
    text-decoration: none;
}

/* .container-fluid {
    max-width: 1755px;
} */


.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: #333;
}

.error-toast {
    background-color: #d9534f;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    10%,
    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}



img {
    transition: all 0.3s;
}

section {
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
}

p {
    font-size: 16px;
    color: var(--para-color);
}

a {
    transition: all ease 0.5s;
    color: #21465b;
}

.bg-color {
    background-color: #e0e2ff;
    z-index: 1;
}

.subnav-partisan {
    position: relative;
    padding: 10px;
    gap: 50px;
    z-index: 1;
    color: #fff;
}

.subnav-partisan::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -13pc;
    top: 0;
    background: var(--theme-color);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}

.sub-nav-address {
    font-size: 14px;
}

.sub-menu-right {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-around;
}

a.navbar-brand {
    width: 100px;
}

a.navbar-brand img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

a.nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 500;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--theme-color);
    font-weight: 600;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.05),
        0 0.25rem 0.5625rem rgba(11, 15, 25, 0.03);
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: var(--dark-color);
}

.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
    color: var(--theme-color);
    background-color: #fff;
}


/* Scroll activated */

.slide-left {
    transform: translateX(-100px);
    transition: transform 1s ease;
}

.slide-right {
    transform: translateX(100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-left,
.scroll-animate.active .slide-right {
    transform: translateX(0);
}

.slide-up {
    transform: translateY(100px);
    transition: transform 1s ease;
}

.slide-down {
    transform: translateY(-100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-up,
.scroll-animate.active .slide-down {
    transform: translateY(0);
}



section.login-page {
    position: relative;
    z-index: 1;
    min-height: 805px;
}

section.login-page::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: 0;
    left: 0;
    background-image: url(../images/shape/shape1.png);
    z-index: 1;
    background-size: cover;
    background-position: bottom;
    background-repeat: repeat-x;
}

.btn {
    font-size: 16px;
}

img.shape-img {
    position: absolute;
}

img.shape-img.shape-img-4 {
    bottom: 0;
    width: 600px;
    right: 0;
}

img.shape-img.shape-img-5 {
    bottom: 0;
    width: 300px;
    left: 0;
}

img.shape-img.shape-img-3 {
    bottom: 0;
    right: 0;
    width: 500px;
}

img.shape-img.shape-img-2 {
    bottom: 0;
    width: 550px;
    left: 0;
}

button.btn.btn-primary {
    background: #492f8b;
}

.form-card {
    position: relative;
    z-index: 2;
}

img.register-shape-img.register-shape-1 {
    width: 700px;
    height: auto;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

img.register-shape-img.register-shape-2 {
    position: relative;
    z-index: -1;
    width: 800px;
}

footer.secondary-footer {
    background: #b5a1f3;
}
