@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --cta: #03779b;
    --light-white: #f9f9f9;
    --white: #fff;
    --gray: #888;
    --light-gray: #eee;
    --dark-black: #081828;
    --light-black: #666;
    --footer-text: #D2D6DC;

    --header-height: 92.83px;
}



/*#region   ======================     Base    ==========================  */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

p {
    line-height: 1.7;
}

body {
    height: 100vh;
    overflow: hidden;
    color: var(--gray);
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    position: relative;
}

body.active {
    min-height: 100vh;
    overflow: auto;
}

img {
    width: 100%;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--cta);
    border-radius: 50px;
    border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

a {
    text-decoration: none;
}

input {
    font-family: 'Inter', sans-serif;
}

/*#endregion   ===================     Base    ==========================  */



/*#region   ======================     Reusable Classes    ==========================  */

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.4rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.875rem;
}

.primary-btn {
    background-color: var(--cta);
    color: var(--light-white);
}

.primary-btn:hover {
    background-color: var(--dark-black);
    transition: all 300ms ease;
}


.show-more-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.secondary-btn {
    background-color: var(--light-white);
    color: var(--cta);
    border: 2px solid var(--cta);
}

.secondary-btn:hover {
    background-color: var(--cta);
    color: var(--light-white);
    transition: all 300ms ease;
}

.error-text{
    margin-block: 1rem;
    color: rgb(203, 0, 0);
    font-weight: 600;
}

/*#endregion   ===================     Reusable Classes    ==========================  */



/*#region   ======================     Navbar    ==========================  */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--cta);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem .75rem;
    z-index: 100;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    transition-delay: .3s;
}

body.scroll-down nav {
    background: var(--white);
    box-shadow: 0px 20px 50px 0px rgb(0 0 0 / 5%);
}

.nav__logo {
    width: 160px;
}

body.scroll-down .nav__logo-white {
    display: none;
}

.nav__logo-orange {
    display: none;
}

body.scroll-down .nav__logo-orange {
    display: block;
}

.nav__links {
    list-style-type: none;
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 1.5rem);
    height: 0;
    overflow-y: hidden;
    background: var(--white);
    -webkit-border-radius: .4rem;
    -moz-border-radius: .4rem;
    -ms-border-radius: .4rem;
    -o-border-radius: .4rem;
    border-radius: .4rem;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.nav__active .nav__links {
    height: 21.85rem;
    overflow-y: scroll;
    padding: 1rem;
}

.nav__links li a {
    display: block;
    color: var(--dark-black);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    padding: .75rem 1.5rem;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    cursor: pointer;
    position: relative;
}

.nav__links li a::before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--white);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

.nav__links li a:hover::before {
    left: 0;
    width: 100%;
}

nav:not(.nav__active) .nav__links li .active {
    color: var(--light-gray) !important;
}

body.scroll-down .nav__links li .header-link.active {
    color: var(--cta) !important;
}

.nav__active .nav__links li .header-link.active {
    color: var(--cta) !important;
}

.nav__cta {
    display: none;
}

/* ----------hamburger---------- */

.nav__menu {
    width: 2rem;
    height: 1.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.nav__menu .hamburger {
    position: absolute;
    right: 0;
    width: 2rem;
    height: 2px;
    background: var(--white);
    -webkit-border-radius: .2rem;
    -moz-border-radius: .2rem;
    -ms-border-radius: .2rem;
    -o-border-radius: .2rem;
    border-radius: .2rem;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

body.scroll-down .hamburger {
    background: var(--dark-black);
}

body.scroll-down .nav__active .hamburger {
    background: transparent;
}

.hamburger::before,
.hamburger::after {
    position: absolute;
    content: '';
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--white);
    -webkit-border-radius: .2rem;
    -moz-border-radius: .2rem;
    -ms-border-radius: .2rem;
    -o-border-radius: .2rem;
    border-radius: .2rem;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

body.scroll-down .hamburger::before,
body.scroll-down .hamburger::after {
    background: var(--dark-black);
}

.hamburger::before {
    -webkit-transform: translateY(-.5rem);
    -moz-transform: translateY(-.5rem);
    -ms-transform: translateY(-.5rem);
    -o-transform: translateY(-.5rem);
    transform: translateY(-.5rem);
}

.hamburger::after {
    -webkit-transform: translateY(.5rem);
    -moz-transform: translateY(.5rem);
    -ms-transform: translateY(.5rem);
    -o-transform: translateY(.5rem);
    transform: translateY(.5rem);
}

.nav__active .hamburger {
    background: transparent;
    -webkit-transform: translateX(-2rem);
    -moz-transform: translateX(-2rem);
    -ms-transform: translateX(-2rem);
    -o-transform: translateX(-2rem);
    transform: translateX(-2rem);
}

.nav__active .hamburger::before {
    -webkit-transform: rotate(45deg) translate(1.5rem, -1.5rem);
    -moz-transform: rotate(45deg) translate(1.5rem, -1.5rem);
    -ms-transform: rotate(45deg) translate(1.5rem, -1.5rem);
    -o-transform: rotate(45deg) translate(1.5rem, -1.5rem);
    transform: rotate(45deg) translate(1.5rem, -1.5rem);
}

.nav__active .hamburger::after {
    -webkit-transform: rotate(-45deg) translate(1.5rem, 1.5rem);
    -moz-transform: rotate(-45deg) translate(1.5rem, 1.5rem);
    -ms-transform: rotate(-45deg) translate(1.5rem, 1.5rem);
    -o-transform: rotate(-45deg) translate(1.5rem, 1.5rem);
    transform: rotate(-45deg) translate(1.5rem, 1.5rem);
}

/*#endregion   ===================     Navbar    ==========================  */



/*#region   ======================     Pre loader    ==========================  */

.section-height {
    height: 100vh;
    width: 100%;
}

.preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    z-index: 1000;
}

.preloader__circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--cta);
    opacity: .5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-animation: preloader 1.5s linear infinite;
    animation: preloader 1.5s linear infinite;
}

.preloader__circle--two {
    animation-delay: .8s;
}

@keyframes preloader {
    0% {
        opacity: .5;
        -webkit-transform: scale(0, 0);
        -moz-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

/*#endregion   ===================     Pre loader    ==========================  */



/*#region   ======================     Hero Section    ==========================  */

.hero-section {
    margin-top: calc(var(--header-height) + 1rem);
}

.hero-section img {
    border-radius: 8px;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*#endregion   ===================     Hero Section    ==========================  */



/*#region   ======================     Tools Section    ==========================  */

.features {
    background: var(--light-white);
    padding: 3rem .75rem;
}

.features__text {
    font-size: 0.875rem;
    text-align: center;
    padding: 0 .5rem;
    margin-bottom: 5rem;
}

.features__text h3 {
    color: var(--cta);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    transition-delay: .2s;
}

.features__text h2 {
    color: var(--dark-black);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
    padding: .5rem 1rem 1rem 1rem;
    transition-delay: .4s;
}

.features__text p {
    transition-delay: .55s;
}

.features__grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fill, minmax(296px, 425px));
    gap: 2rem;
}

.features__grid .feature {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--light-gray);
    -webkit-border-radius: .4rem;
    -moz-border-radius: .4rem;
    -ms-border-radius: .4rem;
    -o-border-radius: .4rem;
    border-radius: .4rem;
}

.feature:hover {
    -webkit-animation: moveTop .3s cubic-bezier(.68, -.55, .27, 1.55) forwards;
    animation: moveTop .3s cubic-bezier(.68, -.55, .27, 1.55) forwards;
}

@keyframes moveTop {
    0% {
        box-shadow: none;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.feature:nth-child(1) {
    transition-delay: .75s;
}

.feature:nth-child(2) {
    transition-delay: .8s;
}

.feature:nth-child(3) {
    transition-delay: .85s;
}

.feature:nth-child(4) {
    transition-delay: .9s;
}

.feature:nth-child(5) {
    transition-delay: .95s;
}

.feature:nth-child(6) {
    transition-delay: 1s;
}

.feature__icon {
    width: 100px;
    height: 100px;
    /* color: var(--white); */
    /* background: var(--cta); */
    border: 2px solid var(--cta);
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: .4rem;
    -moz-border-radius: .4rem;
    -ms-border-radius: .4rem;
    -o-border-radius: .4rem;
    border-radius: .4rem;
    padding: 0.5rem;
}

.feature h3 {
    color: var(--dark-black);
    font-size: 1.125rem;
    font-weight: 500;
    margin: 1.5rem 0 1rem 0;
}

.feature p {
    margin-bottom: 2rem;
}

.features .show-more-container {
    margin-top: 2rem;
}

/*#endregion   ===================     Tools Section    ==========================  */



/*#region   ======================     FAQ    ==========================  */

.faq__text h3 {
    color: var(--cta);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    transition-delay: .2s;
}

.faq__text h2 {
    color: var(--dark-black);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
    padding: .5rem 1rem 1rem 1rem;
    transition-delay: .4s;
}

.faq__text p {
    transition-delay: .55s;
}

.faq {
    padding: 3rem .75rem;
}

.faq__text {
    font-size: 0.875rem;
    text-align: center;
    padding: 0 .5rem;
    margin-bottom: 4rem;
}

.faq__h2 {
    padding: 0;
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq__accordion details {
    border: 1px solid var(--light-gray);
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    border-radius: .5rem;
    overflow: hidden;
}

details summary {
    color: var(--dark-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
}

details[open] summary {
    color: var(--white);
    background: var(--cta);
}

summary .question {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: capitalize;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 1rem;
}

.question .question__count {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    padding: auto;
    border: 1px solid var(--light-gray);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

details[open] .question .question__count {
    color: var(--dark-black);
    background: var(--white);
}

details .fa-plus {
    display: block;
}

details .fa-minus {
    display: none;
}

details[open] .fa-plus {
    display: none;
}

details[open] .fa-minus {
    display: block;
}

details .answer {
    background: var(--light-white);
    padding: 1.5rem;
    -webkit-animation: fadeFromBottom .5s linear;
    animation: fadeFromBottom .5s linear;
}

@keyframes fadeFromBottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

/*#endregion   ===================     FAQ    ==========================  */



/*#region   ======================     Footer    ==========================  */

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background-color: var(--light-gray);
    color: var(--cta);
    font-size: 0.8rem;
    font-weight: 500;
}

/*#endregion   ===================     Footer    ==========================  */



/*#region   ======================     Dashboard    ==========================  */

.dashboard-container {
    position: relative;
    width: 100%;
}

.main {
    position: absolute;
    width: calc(100% - 300px);
    left: 300px;
    min-height: 100vh;
    transition: 0.5s;
}

.main.active {
    width: calc(100% - 80px);
    left: 80px;
}

.topbar {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.toggle {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--cta);
}

.search {
    position: relative;
    width: 400px;
    margin: 0 10px;
}

.search label {
    position: relative;
    width: 100%;
}

.search label input {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    padding: 5px 20px;
    padding-left: 35px;
    font-size: 0.95rem;
    outline: none;
    border: 2px solid var(--light-black);
}

.search label i {
    position: absolute;
    top: 50%;
    left: 10px;
    font-size: 1rem;
    transform: translateY(-50%);
}

.user {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.user img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-title-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: end start;
    padding: 2rem;
    gap: 1rem;
}

.markdown{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.dashboard-title h2{
    color: var(--cta);
}

.dashboard-title p{
    color: var(--light-black);
}

/*#endregion   ===================     Dashboard    ==========================  */



/*#region   ======================     Dashboard Navigation    ==========================  */

.navigation {
    position: fixed;
    width: 300px;
    height: 100%;
    background: var(--cta);
    border-left: 10px solid var(--cta);
    transition: 0.5s;
    overflow: hidden;
}

.navigation.active {
    width: 80px;
}

.navigation ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.navigation ul li {
    position: relative;
    width: 100%;
    list-style: none;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.navigation ul li:not(:nth-child(1)).hovered {
    background-color: var(--white);
}

.navigation ul li:nth-child(1) {
    margin-bottom: 40px;
}

.navigation ul li a {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: var(--white);
    transition: all 300ms ease;
}

.navigation ul li:not(:nth-child(1)).hovered a {
    color: var(--cta);
}

.navigation ul li a .icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    height: 60px;
    line-height: 75px;
    text-align: center;
}

.navigation ul li a .icon i {
    font-size: 1.75rem;
}

.navigation ul li a .title {
    position: relative;
    display: block;
    padding: 0 10px;
    height: 60px;
    line-height: 60px;
    text-align: start;
    white-space: nowrap;
}

.navigation ul li:not(:nth-child(1)).hovered a::before {
    content: '';
    position: absolute;
    right: 0;
    top: -50px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 35px 35px 0 10px var(--white);
    pointer-events: none;
}

.navigation ul li:not(:nth-child(1)).hovered a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 35px -35px 0 10px var(--white);
    pointer-events: none;
}

.navigation ul li:not(:nth-child(1)):not(.hovered):hover a{
    margin-left: 0.5rem;
}

.web-title {
    margin-top: 0.75rem;
}

.web-title img {
    width: 40px;
}

/*#endregion   ===================     Dashboard Navigation    ==========================  */



/*#region   ======================     Dashboard - Cards    ==========================  */

.cardBox {
    position: relative;
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.cardBox .card {
    position: relative;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
}

.cardBox .card .numbers {
    position: relative;
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--cta);
}

.cardBox .card .cardName {
    color: var(--light-black);
    font-size: 1.1rem;
    margin-top: 5px;
}

.cardBox .card .iconBx {
    font-size: 3.5rem;
    color: var(--light-black);
}

.cardBox .card:hover {
    background: var(--cta);
}

.cardBox .card:hover .numbers,
.cardBox .card:hover .cardName,
.cardBox .card:hover .iconBx {
    color: var(--white);
}

/*#endregion   ===================     Dashboard - Cards    ==========================  */



/*#region   ======================     Authentication    ==========================  */

.authentication-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    margin-top: var(--header-height);
}

.forms-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.signin-signup {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 75%;
    width: 50%;
    transition: 1s 0.7s ease-in-out;
    display: grid;
    grid-template-columns: 1fr;
    z-index: 5;
}

.signin-signup form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0rem 5rem;
    transition: all 0.2s 0.7s;
    overflow: hidden;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.signin-signup form.sign-up-form {
    opacity: 0;
    z-index: 1;
}

.signin-signup form.sign-in-form {
    z-index: 2;
}

.signin-signup.title {
    font-size: 2.5rem;
    color: var(--cta);
    margin-bottom: 10px;
}

.input-field {
    max-width: 380px;
    width: 100%;
    background-color: #f0f0f0;
    margin: 10px 0;
    height: 55px;
    border-radius: 55px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.input-field i {
    text-align: center;
    line-height: 55px;
    color: #acacac;
    transition: 0.5s;
    font-size: 1.1rem;
}

.input-field input {
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.input-field input::placeholder {
    color: #aaa;
    font-weight: 500;
}

.social-text {
    padding: 0.7rem 0;
    font-size: 1rem;
}

.social-media {
    display: flex;
    justify-content: center;
}

.social-icon {
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0.45rem;
    color: var(--cta);
    border-radius: 50%;
    border: 3px solid var(--cta);
    text-decoration: none;
    font-size: 1.3rem;
    transition: 0.3s;
}

.social-icon:hover {
    color: #00bde5;
    border-color: #00bde5;
}

.registration-btn {
    width: 150px;
    background-color: var(--cta);
    border: none;
    outline: none;
    height: 49px;
    border-radius: 49px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.registration-btn:hover {
    background-color: #0f4f6a;
}

.panels-container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.authentication-container:before {
    content: "";
    position: absolute;
    height: 2000px;
    width: 2000px;
    top: -10%;
    right: 48%;
    transform: translateY(-50%);
    background: var(--cta);
    transition: 1.8s ease-in-out;
    border-radius: 50%;
    z-index: 6;
}

.image {
    width: 70%;
    transition: transform 1.1s ease-in-out;
    transition-delay: 0.4s;
}

.panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    z-index: 6;
}

.left-panel {
    pointer-events: all;
    padding: 3rem 17% 2rem 12%;
}

.right-panel {
    pointer-events: none;
    padding: 3rem 12% 2rem 17%;
    align-items: flex-end;
}

.panel .content {
    color: var(--white);
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.6s;
}

.panel h3 {
    font-weight: 600;
    line-height: 1;
    font-size: 1.5rem;
}

.panel p {
    font-size: 0.95rem;
    padding: 0.7rem 0;
}

.btn.transparent {
    margin: 0;
    background: none;
    border: 3px solid var(--white);
    width: 130px;
    height: 41px;
    font-weight: 600;
    box-shadow: none;
    font-size: 0.8rem;
}

.right-panel .image,
.right-panel .content {
    transform: translateX(800px);
}

/* ANIMATION */

.authentication-container.sign-up-mode:before {
    transform: translate(100%, -50%);
    right: 52%;
}

.authentication-container.sign-up-mode .left-panel .image,
.authentication-container.sign-up-mode .left-panel .content {
    transform: translateX(-800px);
}

.authentication-container.sign-up-mode .signin-signup {
    left: 25%;
}

.authentication-container.sign-up-mode form.sign-up-form {
    opacity: 1;
    z-index: 2;
}

.authentication-container.sign-up-mode form.sign-in-form {
    opacity: 0;
    z-index: 1;
}

.authentication-container.sign-up-mode .right-panel .image,
.authentication-container.sign-up-mode .right-panel .content {
    transform: translateX(0%);
}

.authentication-container.sign-up-mode .left-panel {
    pointer-events: none;
}

.authentication-container.sign-up-mode .right-panel {
    pointer-events: all;
}

/*#endregion   ===================     Authentication    ==========================  */



/*#region   ======================     Table    ==========================  */

main.table {
    width: calc(100% - 2.5rem);
    height: auto;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    border-radius: .8rem;
    overflow: hidden;
    margin: 0 auto;
}

.table__body {
    width: 95%;
    max-height: calc(89% - 1.6rem);
    background-color: #fffb;
    margin: .8rem auto;
    border-radius: .6rem;
    overflow: auto;
    overflow: overlay;
}

table {
    width: 100%;
}

td img {
    width: 36px;
    height: 36px;
    margin-right: .5rem;
    border-radius: 50%;
    vertical-align: middle;
}

td a{
    color: var(--cta);
}

table, th, td {
    border-collapse: collapse;
    padding: 1rem;
    text-align: left;
}

thead th {
    position: sticky;
    top: 0;
    left: 0;
    background-color: var(--light-gray);
    cursor: pointer;
    text-transform: capitalize;
}

tbody tr:nth-child(even) {
    background-color: #0000000b;
}

tbody tr {
    --delay: .1s;
    transition: .5s ease-in-out var(--delay), background-color 0s;
}

tbody tr.hide {
    opacity: 0;
    transform: translateX(100%);
}

tbody tr td,
tbody tr td p,
tbody tr td img {
    transition: .2s ease-in-out;
}

tbody tr.hide td,
tbody tr.hide td p {
    padding: 0;
    font: 0 / 0 sans-serif;
    transition: .2s ease-in-out .5s;
}

tbody tr.hide td img {
    width: 0;
    height: 0;
    transition: .2s ease-in-out .5s;
}

.status {
    padding: 0.5rem 0.75rem;
    border-radius: 16px;
    text-align: center;
}

.status.delivered {
    background-color: #86e49d;
    color: #006b21;
}

.status.cancelled {
    background-color: #d893a3;
    color: #b30021;
}

.status.pending {
    background-color: #ebc474;
}

.status.shipped {
    background-color: #6fcaea;
}

.pagination{
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-links{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.step-links .current{
    font-size: 0.92rem;
    color: var(--cta);
}

.step-links a{
    background-color: var(--cta);
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    color: var(--white);
    text-transform: capitalize;
    transition: all 500ms ease;
}

.step-links a:hover{
    background-color: #081828;
}

.deletion-link{
    color: #b30021;
}

/*#endregion   ===================     Table    ==========================  */



/*#region   ======================     Form    ==========================  */

.dashboard-form{
    width: calc(100% - 3rem);
    margin: 0 auto;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    border-radius: .8rem;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
}

.input-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.3rem;
}

.input-container label{
    font-weight: 600;
}

.input-container input{
    width: 100%;
    outline: none;
    border: 2px solid var(--cta);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.input-container textarea{
    width: 100%;
    outline: none;
    border: 2px solid var(--cta);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    height: 20vh;
    resize: none;
    font-family: 'Inter', sans-serif;
}

.input-container select{
    width: 100%;
    outline: none;
    border: 2px solid var(--cta);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
}

.dashboard-form button{
    outline: none;
    border: none;
    width: 100%;
    cursor: pointer;
}

/*#endregion   ===================     Form    ==========================  */



/*#region   ======================     Instructions    ==========================  */

.instruction-section{
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 2rem;
}

.instruction-section p,
.instruction-section ul{
    margin-bottom: 1rem;
    max-width: 85%;
}

.instruction-section h2{
    font-size: 1.2rem;
    color: var(--light-black);
}

.instruction-section a{
    color: var(--cta);
}

.instruction-section ul{
    padding-left: 2rem;
}

.instruction-section ul li:not(:last-child){
    margin-bottom: 1rem;
}

.instruction-section ul li strong{
    color: var(--cta);
}

.instruction-section ul li span{
    margin-inline: 0.2rem;
    padding: 0.2rem 0.4rem;
    background-color: rgb(230, 241, 255);
    color: var(--cta);
    border-radius: 0.6rem;
}

/*#endregion   ===================     Instructions    ==========================  */



/*#region   ======================     Registration    ==========================  */

.register-section{
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    margin-top: var(--header-height);
    padding: 2rem 1rem;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.register-section .section-title{
    color: var(--cta);
    text-align: center;
}

.register-section .section-subtitle{
    color: var(--gray);
    font-weight: 500;
    text-align: center;
}

.self_rendered_form{
    margin-top: 3rem;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
}

.self_rendered_form div{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.3rem;
}

.self_rendered_form div label{
    font-weight: 600;
}

.self_rendered_form div input{
    width: 100%;
    outline: none;
    border: 2px solid var(--cta);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.self_rendered_form button{
    outline: none !important;
    border: none;
    width: 100%;
    cursor: pointer;
}

/*#endregion   ===================     Registration    ==========================  */





/*#region   ======================     Whatsapp Icon    ==========================  */

.whatsapp-icon{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background-color: rgb(45, 183, 66);
    color: white;
    border-radius: 50%;
    box-shadow: 0 6px 8px 2px rgba(0,0,0,.14);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 30;
}

/*#endregion   ===================     Whatsapp Icon    ==========================  */



