/* ORDI */
@media screen and (min-width:768px) {
    div.container div.container_registlog {
        display: flex;
        justify-content: space-around;
    }


    div.index div.menu {
        margin: -25px 0 -30px -2vw;
    }

    div.fav div.box {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(8, minmax(100px, 1fr));
    }
}
/* TEL */
@media screen and (max-width:768px) {
    div.container div.container_registlog {
        display: grid;
        place-items: center;
    }


    div.index div.menu {
        transform: translate(-3vw, -10px);
        margin: -25px 0 -25px -2vw;
    }


    div.fav div.box {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(3, minmax(100px, 1fr));
    }
}


div.container_registlog div h2 {
    color: white;
}
form div label {
    font-weight: bold;
    display: block;
    margin-top: 1em;
    margin-bottom: 0.5em;
    color: white;
    font-size: 18px;
}
div label span {
    color: red;
}
form div input {
    border: 1px solid #a9a9a9;
    border-radius: 10px;
    width: 250px;
    height: 30px;
    background: transparent;
    color: red;
    text-align: center;
    font-size: 15px;
}
input[type=submit] {
    margin-top: 30px;
    width: 200px;
    height: 35px;
    border: none;
    border-radius: 15px;
    background-color: red;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 3.5em;
}





div.container div.index {
    display: flex;
}

/* MENU */
div.index div.menu {
    left: 0;
    min-height: calc(100vh - 90px);
    width: 200px;
    text-align: center;
    border-radius: 0;
    padding: 10px 0;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.08);
}
div.menu ul {
    padding-left: 0;
    margin-left: 0;
}
div.menu ul li {
    padding: 20px;
}
ul li a {
    display: block;
    padding: 18px 20px;
    color: #e6e6e6;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
    border-left: 3px solid transparent;
}
ul li a:hover {
    background: rgba(255,255,255,0.05);
    color: #00c6ff;
    padding-left: 30px;
    border-left: 3px solid #00c6ff;
}
ul li a.active {
    background: rgba(0,198,255,0.1);
    color: #00c6ff;
    border-left: 3px solid #00c6ff;
}

/* PROFIL */
div.profil {
    display: grid;
    place-items: center;
    margin-left: calc(50vw - 300px);
}
div.profil input.input_locked {
    background-color: #e0e0e0;
    cursor: not-allowed;
    color: #666;
}
div.profil div.modif {
    margin-top: 75px;
}


/* FAVORIS */
div.fav {
    padding: 20px;
}
div.fav h1 {
    margin-bottom: 10px;
}
div.fav div.box a {
    transition: transform .3s;
    text-align: center;
    margin: 5px 0;
}
div.fav div.box a:hover {
    transition: transform .3s;
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);  
    transform: scale(1.1);
}
div.fav div.box img {
    border-radius: 8px;
    height: auto;
    width: 100%;
}


/* SUGG / SIGNA */
body {
    overflow-x: hidden;
}
div.sugg_signa {
    padding: 20px;
}
div.sugg_signa h1 {
    margin-bottom: 15px;
}
div.sugg_signa div.list_container {
    display: flex;
    align-items: center;
    margin: 8px 0;
    padding: 15px;
    background: #151515;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3), 0 0 0 rgba(0,0,0,0);
    border-radius: 8px;
    width: calc(100vw - 240px);
    box-sizing: border-box;
}
div.sugg_signa div.list_container:hover {
    background-color: #464646;
}
div.list_container div.title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    width: 30%;
    text-align: center;
}
div.list_container div.status {
    width: 30%;
    display: inline-flex;
    gap: 6px;
}
div.status p.title, div.probleme p.title {
    color: white;
    text-decoration: underline white;
}
div.status p.encours {
    color: red;
}
div.status p.fait {
    color: green;
}
div.list_container div.date {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}
div.list_container div.probleme {
    width: 60%;
}