:root {
    --surface: #070909;
    --patternURL: url("/assets/tech/bongos.png");

    --theme: #20c7c7;
    --theme-light: #87eded;
    --theme-dark: #073030;

    /* BUTTON */
    --button-bg: #074040;
    --button-hover: #106e6e;
    --button-text: var(--text);

    --delete-bg: #400707;
    --delete-hover: #6e1010;
    --delete-text: #ffcdcd;

    /* MAIN CONTAINER */
    --mc-bg: #0f1515b1;
    --mc-blur: 20px; 

    /* CONTAINER */
    --c-bg: #030505cd;
    --c-blur: 10px;

    --c-bg-variant: #111b1bcd;

    /* THEME CONTAINER */
    --tc-bg: #171d1c;
    --tc-bg-hover-variant: #1b2321;
    --tc-hover: #293533;

    /* TEXT */
    --theme-font: CashewAppleAle, Helvetica, system-ui;
    --text-font: Manrope, Helvetica, system-ui;
    --text: #fff;


    /* FOCUS OUTLINE */
    --focus-outline: rgba(200, 255, 255, 0.5);

}


/* TECH */
body {
    background-image: var(--patternURL);
    background-position: center;
    background-size: 250px;
    background-repeat: repeat;

    background-color: var(--surface);

    overflow-x: hidden;

    padding: 0;
    margin: 0;
}

.pageFrame {
    position: relative;
    top: 0px;
    left: 0px;

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.pageFrame.center {
    min-height: 100svh;
    align-items: center;
    justify-content: center;
}





/* SKELETON LOADER */
.lIbox {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
    justify-content: start;
}

.loadInd {
    position: relative;

    width: 100%;
    height: 50px;

    border-radius: 15px;
    box-sizing: border-box;

    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.15);
}

.loadInd.half {
    width: 50%;
}

.loadInd.quarter {
    width: 25%;
}

.loadInd::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 50%;
    height: 100%;

    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
  
    transform: translateX(-100%);
    animation: loading 3s infinite ease-in-out;
}

@keyframes loading {
  100% {
    transform: translateX(200%);
  }
}






/* PAGE HEADER */
.pageHeaderFrame {
    position: fixed;
    top: 0px;
    left: 0px;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 100;
}

.pageFooterFrame {
    position: relative;
    bottom: 0px;
    left: 0px;

    margin-top: 10%;

    width: 100%;

    padding: 150px 100px;
    box-sizing: border-box;

    background-color: #0d0e0e;

    display: flex;
    align-items: start;
    justify-content: space-between;
}






/* PAGE CONTENT */
.contentFrame {
    position: relative;
    margin: 0 auto;

    margin-top: 250px;

    width: 90%;
    max-width: 1500px;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}








/* BUTTON */
button,
.button {
    position: relative;

    padding: 8px 15px;
    box-sizing: border-box;

    font-family: var(--text-font);
    font-weight: 400;
    font-size: 17px;
    color: var(--button-text);
    text-decoration: none;

    background-color: var(--button-bg);
    border-radius: 5px;

    border: none;
    outline: none;

    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: start;
}

button:hover,
.button:hover {
    background-color: var(--button-hover);
    cursor: pointer;
}

.button.large {
    padding: 10px 18px;
    font-size: 18px;
}

button:focus,
.button:focus {
    outline: 2px solid var(--focus-outline);
}

button.delete,
.button.delete {
    background-color: var(--delete-bg);
    fill: var(--delete-text);
}

button.delete:hover,
.button.delete:hover {
    background-color: var(--delete-hover);
}









/* PAGE HERO */
.pageHero {
    position: relative;

    width: 100%;
    aspect-ratio: 5/1;
    min-height: 200px;

    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;

    overflow: hidden;

}

.paHeContent {
    position: absolute;
    top: 0px;
    left: 0px;

    padding: 60px;
    box-sizing: border-box;

    width: 75%;
    height: 100%;

    background: linear-gradient(90deg, #020505e6, #00000000);

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.paHeTitle {
    position: relative;

    font-family: "CashewAppleAle";
    font-weight: 700;
    font-size: 75px;
    color: var(--theme);
}

.paHeSubtitle {
    position: relative;

    margin-top: -15px;

    font-family: "Manrope";
    font-weight: 400;
    font-size: 16px;
    color: var(--text);
}



ol, ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




.loadedContent {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    min-height: 100svh;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}











input {
    position: relative;

    padding: 15px 25px;
    box-sizing: border-box;

    background-color: var(--surface);
    border-radius: 5px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;

    font-family: "Manrope";
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

input:focus {
    outline: 2px solid var(--focus-outline);
}

input.error {
    border: 1px solid #ff0000;
    color: #ffbfbf;
}

.ipError {
    position: relative;

    margin-bottom: 0px;

    height: 0px;
    pointer-events: none;
    opacity: 0;

    font-family: "Manrope";
    font-weight: 400;
    font-size: 14px;
    color: #ff0000;

    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1);
}

.ipError.visible {
    height: auto;

    pointer-events: all;
    opacity: 1;
    margin-bottom: 10px;
}








.checkBoxLine {
    position: relative;

    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: start;
}

.checkbox {
    position: relative;

    width: 40px;
    height: 40px;

    background-color: var(--surface);
    border-radius: 10px;

    accent-color: var(--theme);
}

.checkBoxLabel {
    position: relative;

    font-family: var(--text-font);
    font-weight: 400;
    font-size: 16px;
    color: var(--text);
}





















.errorMessage {
    position: fixed;

    bottom: 0px;
    left: 50%;
    translate: -50%;

    pointer-events: none;

    opacity: 0;

    background-color: red;
    border-radius: 20px;

    padding: 40px 80px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Manrope";
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.5px;
    color: #ffffff;

    transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}

.errorMessage.visible {
    bottom: 100px;
    opacity: 1;
}




























@media (max-width: 768px) {

    /* TECH */
    body {
        background-size: 200px;
    }

    .pageFrame {
        position: relative;
        top: 0px;
        left: 0px;

        padding: 0px;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }





    /* SKELETON LOADER */
    .lIbox {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: start;
        justify-content: start;
    }

    .loadInd {
        height: 25px;
        border-radius: 10px;
    }

    .loadInd::after {
        border-radius: 10px;
    }




    /* PAGE HEADER */
    .pageFooterFrame {
        margin-top: 25%;
        padding: 100px 0px;
    }






    /* PAGE CONTENT */
    .contentFrame {
        margin-top: 200px;
        width: 80%;
        align-items: center;
    }








    /* BUTTON */
    .button {
        font-size: 15px;
    }

    .button.large {
        font-size: 16px;
    }









    /* PAGE HERO */
    .pageHero {
        aspect-ratio: 1.5/1;
        min-height: 100px;
    }

    .paHeContent {
        padding: 40px;
        width: 100%;
        background: #000000a1;
        align-items: center;
        justify-content: center;
    }

    .paHeTitle {
        font-size: 50px;
    }

    .paHeSubtitle {
        margin-top: -5px;
        font-size: 15px;
        text-align: center;
    }









    .errorMessage {
        padding: 20px;
    }




    .checkbox {
        width: 35px;
        height: 35px;
    }
}