:root {
    --electric-border-color: #dd8448;
    --electric-light-color: oklch(from var(--electric-border-color) l c h);
    --gradient-color: oklch(from var(--electric-border-color) 0.3 calc(c / 2) h / 0.4);
    --color-neutral-900: oklch(0.185 0 0);
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #000;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    text-transform: uppercase;
    font-size: 6rem;
    font-weight: 600;
    line-height: 1;
}

p {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}

.preloader,
.split-overlay,
.tags-overlay {
    position: fixed;
    width: 100vw;
    height: 100svh;
}

.preloader,
.split-overlay {
    background-color: #0a0a0a;
    color: #fff;
}

.preloader,
.tags-overlay {
    z-index: 2;
}

.split-overlay {
    z-index: 1;
}

.intro-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.outro-title {
    position: absolute;
    top: 50%;
    left: calc(50% + 10rem);
    transform: translate(-50%, -50%);
    text-align: center;
}

.tag {
    position: absolute;
    width: max-content;
    color: #5a5a5a;
    overflow: hidden;
}

.tag-1 {
    top: 15%;
    left: 15%;
}

.tag-2 {
    bottom: 15%;
    left: 25%;
}

.tag-3 {
    bottom: 30%;
    right: 15%;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    clip-path: polygon(0 48%, 0 48%, 0 52%, 0 52%);
    z-index: 2;
}

.container .hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
}

nav,
footer {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 2;
}

nav p#logo {
    font-weight: 600;
    font-size: 20px;
}

.card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card h1 {
    text-align: center;
    width: 100%;
    font-size: 3rem;
}

.card .char span {
    position: relative;
    display: inline-block;
    transform: translateY(100%);
    will-change: transform;
}

.intro-title .char,
.outro-title .char,
.card .char {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.intro-title .char,
.outro-title .char {
    margin-top: 0.75rem;
}

.intro-title .char span,
.outro-title .char span,
.tag .word {
    position: relative;
    display: inline-block;
    transform: translateY(-100%);
    will-change: transform;
}

.intro-title .first-char {
    transform-origin: top left;
}

@media (max-width: 1000px) {
    h1 {
        font-size: 2.5rem;
    }

    .outro-title {
        left: calc(50% + 2.5rem);
    }

    .outro-title{
        font-size: 1rem;
        width: 100%;
    }

    .card {
        width: 75%;
    }

    .card h1 {
        font-size: 2.5rem;
    }

    .intro-title .char,
    .outro-title .char {
        margin-top: 0.5rem;
    }
}


/* CARD */

/* Reset and base styles */

/* CSS Variables */






/* Content container */
.content-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 10;
}



.content-container h1 {
    font-size: 20px;
    color: white;
    margin-top: 20px;
    text-align: center;
}

.content-container h2 {
    font-size: 18px;
    color: white;
    text-align: center;
}

.content-container h2 span {
    color: #dd8448;
}

.card-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-form label {
    color: white;
    font-size: 18px;
}

.card-form input {
    background: #FFFFFF1A;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    padding-left: 10px;
    color: white;
    margin-top: 10px;
}

.card-form button {
    color: white;
    background: #dd8448;
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    transition: all .2s linear;
}

.card-form button:hover {
    box-shadow: 0px 0px 10px #dd8448;
    cursor: pointer;
}

