html {
    /*Nombre d'or ╰(*°▽°*)╯*/
    font-size: 16.180339887px;
    height: 100%;
    width: 100%;
}
body {
    background-color: var(--bg-color);
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    height: 92%;
}
.special {
    color: var(--link-color);
}
.glass_button {
    font-size: 1.3rem;
    color: var(--text-color);
    text-decoration: none;

    border-bottom: 1px solid var(--link-color);
    border-left: 1px solid var(--link-color);
    border-radius: 12px 10px 8px 12px;

    box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 6px 3px rgba(255, 255, 255, 0.3);

    padding: 8px;
    padding-left: 16px;
    padding-right: 18px;
    transition: 0.2s ease-in-out;
}
.glass_button:hover {
    background-color: color-mix(in srgb, var(--link-color) 42%, transparent);
}

/* Formulaires */
input[type="text"],
input[type="submit"],
.pass {
    font-size: 1.2rem;
    padding: 0.2vh;

    height: 2.6vw;
    width: 96%;

    color: var(--text-color);
    background-color: color-mix(in srgb, var(--content-bg) 60%, transparent);
    border: 1px solid var(--text-color);
    border-radius: 6px;
    box-sizing: border-box;
    transition: 0.3s ease;
}
.pass {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1vw;
}
.pass i {
    font-size: 1.8rem;
    margin-right: 0.8vw;
}
.pass input[type="text"],
.pass input[type="password"] {
    color: var(--text-color);
    font-size: 1.2rem;
    background: none;
    border: none;
    width: 100%;
    height: 100%;
}
input[type="submit"]:hover {
    color: var(--content-bg);
    background-color: var(--link-color);
}
input[type="checkbox"] {
    -ms-transform: scale(2); /* IE */
    -moz-transform: scale(2); /* FF */
    -webkit-transform: scale(2); /* Safari and Chrome */
    -o-transform: scale(2); /* Opera */

    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;

    height: 15px;
    width: 15px;

    margin-left: 7px;
    margin-right: 16px;
    transition: 0.3s ease;

    border-radius: 4px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    background-color: color-mix(in srgb, var(--content-bg) 60%, transparent);
}
input[type="checkbox"]:checked {
    position: relative;
    &:before {
        font-family: FontAwesome;
        content: '\f00c';
        display: block;
        color: var(--text-color);
        font-size: 13px;
        position: absolute;
    }
}
.check-rules {
    display: block;
    justify-items: center;
    font-size: 1.2rem;
    margin-top: 2.4vh;
    margin-bottom: 2vh;
    line-height: 1.4;
}
.rules {
    margin-bottom: 1vh;
    margin-top: 1vh;
}
.rules a {
    text-decoration: underline;
    transition: 0.3s ease;
}
.rules a:hover {
    color: var(--content-bg);
}

@media (min-width: 1000px) 
{
    /* Header */
    header {
        margin: 32px;
        margin-top: 0px;
        
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    header * {
        transition: color 0.4s ease;
        text-decoration: none;
        color: var(--text-color);
    }
    header section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1.6vw;
    }
    header h1 {
        font-size: 1.8rem;
    }
    header h2 {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 1.4rem;
    }
    header i {
        color: var(--text-color);
        font-size: 1.6rem;
    }
    header i:hover {
        color: var(--content-bg);
    }

    .btnSign {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .btbSignPart {
        color: var(--bg-color);
        background-color: var(--text-color);
        font-size: 1.2rem;

        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;

        margin-left: 2px;
        padding: 12px;
    }
    .btbSignPart:hover  {
        color: var(--link-color);
        background-color: var(--content-bg);
    }
    #signin {
        border-radius: 32px 0px 0px 32px;
    }
    #signup {
        border-radius: 0px 32px 32px 0px;
    }
    #account {
        min-width: 160px;
        border-radius: 32px;
    }

    /* Pages */
    main {
        width: 100%;
    }
    main h1 {
        padding-top: 4vh;
        font-size: 2.7rem;
    }
    main h2 {
        font-size: 2.2rem;
    }
    main p {
        font-size: 1.6rem;
        line-height: 1.7;
    }
    h3 {
        font-size: 1.4rem;
    }
    form h3 {
        margin-bottom: 0.5vh;
    }

    .divided {
        width: 100%;
        height: 80vh;

        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }
    .center {
        text-align: center;
    }
    .center-y {
        padding-top: 30vh;
    }
    .left {
        text-align: left;
        padding-left: 5vw;
    }
    .right {
        right: 5vw;
    }
    .left, .right {
        width: 32vw;
    }
    .top {
        top: 0px;
        padding-top: 16vh;
    }
    .bottom {
        bottom: 0px;
        padding-bottom: 4vh;
    }
    .absolute {
        position: absolute;
    }
    .auto-height {
        height: auto;
    }
    .text {
        padding: 2rem; 
        max-width: 70vw; 
        margin: auto;
        margin-bottom: 3vh;
    }
    
    #reviews {
        overflow-y: scroll;
        top: 15vh;
        height: 75vh;
        padding-right: 1vw;
    }


    @media (max-height: 800px) {
        html {
            overflow-y: scroll;
        }
        #home,
        #new_account {
            height: 100vh;
        }
    }
    @media (min-width: 1200px) {
        header #liens_centre {
            position: absolute; 
            left: 50%; 
            transform: translate(-50%);
        }
    }
}
