/*          Inputs             */
input,
textarea,
select,
button {
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 1rem;
}
.darkGrey {
    background-color: var(--darkGrey);
    border-color: var(--darkGreyHover);
}
.darkGrey:hover {
    background-color: var(--darkGreyHover);
}
input.supprimer {
    background-image: var(--redGradient);
}
input.supprimer:hover {
    background-image: none;
    background-color: var(--darkGreyHover);
}
.blueButton {
    background-color: #0d6efd;
    border-color: #0a58ca;   
}
.blueButton:hover {
    background-color: #0a58ca;

}

.darkGrey,
.blueButton,
input.supprimer {
    color: white;
    transition: all 1s;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* Inputs other than those on  top */
:not(.submitDiv) > input:not(.darkGrey, .blueButton, .supprimer, :disabled), select {
    background-color: white;
    border: none;
    color: black;
}
/*      Text entry inputs       */
:not(.alertDIV) input:not(.btn, [type="checkbox"], [type="button"], [type="submit"], [type="reset"], :disabled), select {
    width: 50%;
    margin-bottom: 1rem;
    height: 2rem;
    background-color: white;
}
input:disabled {
    background-color: grey;
    color: white;
    border: none;
}
input[type="submit"] {
    width: fit-content;
}
/* Checkbox input > follow */
.follow input {
    margin: 0.2rem 0 0.2rem 4rem;
    width: 1.5rem;
}
input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
}



body {
    background-image : url(images/fond_dark.jpg);
    background-repeat : no-repeat ;
    background-size : cover;
    background-attachment: fixed;
}
:not(.alertDIV) > h3 {
    color: white!important;
}
footer > p {
    margin: 0!important;
}
.detailsForm {
    color: var(--lightGrey);
}

.follow {
    display: flex;
    width: 50%;
}

.gridWrapper {
    margin: 2rem;
    display: grid;
    width: 60vw;
    grid-template-rows: repeat(13, 1fr);
}
.gridWrapper,
.gridWrapper div {
    padding: 0!important;
    text-align: left!important;
}
#logo {
    position: absolute;
    top: 5rem;
    right: 2rem;
    cursor: pointer;
}
@media screen and (max-width: 1000px) {
    .gridWrapper input {
        min-width: 80%;
        width: fit-content;
        font-size: 1.1rem;
    }
/*    body {
        background-image: none;
        background-color: black;
    }*/
}