/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    /* Colors */
    --light-color: #ffffff;
    --primary-color: #efff05;
    --secondary-color: #ffffff;
    --third-color: #abc6b7;
    --four-color: #002c14;
    --five-color: #094524;
    --six-color: #abc6b7;
    --body_bg-color: #003819;
    --primary-color-rgb: 160, 129, 70;
    --secondary-color-rgb: 255, 255, 255;
    --third-color-rgb: 171, 198, 183;
    --four-color-rgb: 0, 44, 20;
    --five-color-rgb: 9, 69, 36;
    --six-color-rgb: 171, 198, 183;
    --body_bg-color-rgb: 0, 56, 25;
    --gradient-color-from: #c0ce00;
    --gradient-color-to: #949e00;
    /* --gradient-color-from: #d7ba83;
    --gradient-color-to: #a08146; */
    --gradient-color2-from: #8312ff;
    --gradient-color2-to: #2cb0ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--third-color);
}

.line,
.word {
    overflow: hidden;
}

.line,
.char {
    transform: translateY(100%);
    opacity: 0;
}

.clip-path {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.bg-grad {
    background-color: transparent;
    background-image: linear-gradient(135deg, #949e00 0%, #c0ce00 100%);
}

p {
    margin: 0px;
    padding: 0px;
    color: #4e4e4e;
    font-size: 16px;
    line-height: 26px;
}

.text-light {
    color: #ffffff;
}

.text-dark {
    color: black;
}

.text-grey {
    color: #666666 !important;
}

.md-head-dark {
    font-size: 50px;
    font-weight: 700;
    color: black;
}

.md-head-light {
    font-size: 50px;
    font-weight: 700;
    color: rgb(255, 255, 255);
}

.sm-text {
    font-size: 32px;
    letter-spacing: -0.64px;
    margin-bottom: 0px;
    font-weight: 300;
}

.s-text {
    font-size: 24px;
    margin-bottom: 0px;
    font-weight: 300;
}

.uppercase {
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(
        245deg,
        var(--gradient-color-from) 34.77%,
        var(--gradient-color-to) 99.47%
    );
    background-color: initial;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    background-color: #2a2a2a;
}

.divider-inner {
    display: block;
    width: 150px;
    height: 1px;
    background-image: linear-gradient(
        to right,
        var(--gradient-color-from),
        var(--gradient-color-to)
    );
}

.bg-black {
    background-color: black;
}

.spacer {
    height: 10rem;
}

.sm-space {
    height: 3rem;
}

.xs-space {
    height: 1rem;
}

/* Hero */
.hero {
    background: linear-gradient(to bottom, #000000, #7e006d);
    text-align: center;
    color: var(--light-color);
}

.hero img {
    overflow: hidden;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

.hero h1 {
    color: #ffffff;
    -webkit-text-stroke-color: #ffffff;
    font-size: 64px;
    margin-bottom: 0px;
    font-weight: 600;
}

.feature-icon {
    font-size: 2rem;
    color: black;
    height: 6rem;
    width: 6rem;
    min-width: 6rem;
    min-height: 6rem;
    display: grid;
    place-content: center;
    border-radius: 50px;
    background: #ffffff;
    box-shadow: 11px 11px 21px #ebebeb, -11px -11px 21px #ffffff;
    margin-bottom: 1.5rem;
}

.features h5 {
    color: black;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.dashboard-inner {
    background: linear-gradient(to right, #000000, #47007e);
    padding: 4rem;
    border-radius: 2rem;
    overflow: hidden;
}

.dashboard-inner img {
    /* box-shadow: 11px 11px 21px #171717, -11px -11px 21px #171717; */
    border-radius: 1rem;
    overflow: hidden;
}

.how-works {
    /* background-color: black; */
    background: linear-gradient(to left, #000000, #47007e);
    /* background-color: rgba(241, 241, 241, 0.588); */
    color: white !important;
}

.how-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.how-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: center;
    padding: 1rem;
    overflow: hidden;
    border-radius: 1rem;
    background-color: white;
}

.how-item i {
    font-size: 3rem;
    color: black;
}

.how-item p {
    font-size: 1.2rem;
}

/* Login Page */
.login-form-logo {
    width: 30%;
    margin-bottom: 2rem;
}

.login-page {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reg-page {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-image: url(../img/reg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-main {
    background-color: rgb(255, 255, 255);
    padding: 2rem;
    border-radius: 10px;
}

input:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important; /* or your desired background */
    -webkit-text-fill-color: #000 !important; /* text color */
    transition: background-color 5000s ease-in-out 0s; /* prevents flickering */
}

.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

.login-form-link {
    color: black;
    text-decoration: underline;
    font: 14px;
}

/* inputs */

label {
    color: #010101;
    font-size: 14px;
    font-weight: 400;
    padding: 0 4px;
    background-color: #fff;
    margin-left: 12px;
    transform: translatey(9px);
    z-index: 3;
    position: relative;
    display: inline-block;
}

input {
    height: 50px;
    background-color: #fff;
    border-radius: 10px;
    color: #000;
    border: 1px solid #c8c8c8;
    padding-left: 14px;
    line-height: 1.73;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    outline: none;
    font-family: inherit;
    padding: 6px 25px;
    appearance: none;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

input:focus-visible {
    border-color: black;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}
