@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 {
    --heading-font: 'Poppins', sans-serif;
    --main-font: 'Poppins', sans-serif;

    --fs1: 12px;
    --fs2: 14px;
    --fs3: 16px;
    --fs4: 18px;
    --fs5: 20px;
    --fs6: 24px;
    --fs7: 30px;
    --fs8: 36px;
    --fs9: 48px;
    --fs10: 60px;
    --fs11: 72px;

    --sp1: 4px;
    --sp2: 8px;
    --sp3: 12px;
    --sp4: 16px;
    --sp5: 24px;
    --sp6: 32px;
    --sp7: 48px;
    --sp8: 64px;
    --sp9: 96px;
    --sp10: 128px;

    /* COLORS */

    --main-gradient: linear-gradient(141deg, #d8ff00, #ffd300);

    --accent1: hsla(71, 90%, 92%, 1);
    --accent2: hsla(71, 91%, 83%, 1);
    --accent3: hsla(71, 90%, 66%, 1);
    --accent4: hsla(101, 54%, 61%, 1);
    --accent5: hsla(118, 49%, 56%, 1);


    --main1: hsla(148, 39%, 55%, 1);
    --main2: hsla(154, 38%, 48%, 1);
    --main3: hsla(157, 53%, 39%, 1);
    --main4: hsla(157, 46%, 38%, 1);
    --main5: hsla(167, 56%, 28%, 1);
    --main6: hsla(178, 65%, 19%, 1);
    --main7: hsla(181, 92%, 10%, 1);
    --main8: hsla(182, 90%, 8%, 1);
    --main9: hsla(182, 94%, 6%, 1);
    --main10: hsla(180, 100%, 3%, 1);

    --neutr10: #141414ff;
    --neutr9: #1b1b1bff;
    --neutr8: #222222ff;
    --neutr7: #292929ff;
    --neutr6: #302f2fff;
    --neutr5: #3e3c3cff;
    --neutr4: #4b4949ff;
    --neutr3: #817d7eff;
    --neutr2: #b8b2b3ff;
    --neutr1: #eee6e8ff;



    --red1: hsl(0, 100%, 96%);
    --red2: hsl(0, 100%, 80%);
    --red3: hsl(0, 100%, 60%);
    --red4: hsl(0, 100%, 40%);
    --red5: hsl(0, 100%, 20%);

    --orange1: hsl(49, 100%, 96%);
    --orange2: hsl(48, 95%, 76%);
    --orange3: hsl(44, 92%, 63%);
    --orange4: hsl(36, 77%, 49%);
    --orange5: hsl(22, 82%, 39%);

    --green1: hsl(83, 100%, 96%);
    --green2: hsl(86, 100%, 76%);
    --green3: hsl(90, 84%, 55%);
    --green4: hsl(92, 89%, 38%);
    --green5: hsl(99, 91%, 25%);
}

* {
    margin-block: 0px;
    box-sizing: border-box;
    line-height: 1.5;
    user-select: none;
}

*::placeholder {
    color: var(--neutr4);
}

html {
    background: white;
    color: var(--neutr10);
    font-size: var(--fs3);
}

body {
    font-family: var(--main-font), sans-serif;
    margin: 0px;
}


h1,
h2 {
    font-family: var(--heading-font), serif;
}

h1 {
    font-size: var(--fs9);
    line-height: 1.2;
}

h2 {
    font-size: var(--fs7);
}

h3 {
    font-size: 1.5rem;
}

ul {
    padding-inline-start: 2rem;
}


hr {
    border: solid 1px var(--neutr1);
    width: 100%;
}

.hidden {
    display: none !important;
}

input,
select,
textarea {
    /* outline: solid 2px var(--neutr2); */
    border: 0px;
    border-radius: 8px;
    font-size: inherit;
    padding: 0.75rem;
    resize: none;
    font-family: inherit;
    background: var(--neutr8);
    color: white;
}

input:invalid:not(:focus):not(:placeholder-shown),
select:invalid:not(:focus):not(:placeholder-shown),
textarea:invalid:not(:focus):not(:placeholder-shown) {
    outline: 2px solid var(--red3);
    background: var(--red5);
}

input:focus,
select:focus,
textarea:focus,
.input-active>.ts-control {
    /* outline: var(--accent4) 2px solid; */
    outline: white 2px solid;
    border: 0px;
}

button {
    border: 0px;
    background-color: var(--main3);
    color: var(--main1);
    padding: 8px 24px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.05s ease-in-out;
    cursor: pointer;
}

button:hover {
    filter: brightness(1.2);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: #0000003f;
}


.button1 {
    background: var(--accent6);
}

.button2 {
    background: var(--accent3);
    color: var(--accent8);
}

.button3 {
    background: var(--neutr1);
    color: var(--neutr4);
}

.button4 {
    background: var(--accent9);
    color: var(--accent4);
}

.button5 {
    background: var(--accent4);
    color: var(--accent9);
}

.button-cta {
    /* background: linear-gradient(90deg, hsl(199deg 95% 47%), hsl(166deg 93% 47%)); */
    /* color: white; */
    border-radius: 10px;
}

.main-cta {
    width: 300px;
    margin: auto;
    padding: 10px;
    border-radius: 10px;
    font-size: var(--fs5);
    background: linear-gradient(141deg, #4700ff, #9c27b0);
    background: black;
}

.icon-list {
    list-style-type: none;
    padding-left: 1em;
    text-align: left;
}

a {
    color: inherit;
    text-decoration: inherit;
}

img[src=''] {
    display: none;
}



select {
    text-transform: capitalize;
}

.success {
    color: var(--green4);
}

.error {
    color: var(--red3);
}

.hint {
    font-size: var(--fs1);
    color: var(--neutr4);
}

/* .hint::before {
    content: attr(icon);
    font-style: normal;
    margin-right: 5px;
} */

.body-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.content-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 55px;
}