* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/FR-fr-20250210-TRIFECTA-perspective_22560147-257b-4ef3-8a39-4c8070b6d927_small.jpg');
    background-size: 120%;
    /* Ajustez cette valeur pour contrôler le "zoom" */
    background-attachment: fixed;
    font-family: sans-serif;
    margin: 0px;
    color: white;
}

button {
    cursor: pointer;
}

#logo {
    width: 167px;
    margin: 20px 40px;
}

#main {
    width: 450px;
    background-color: rgba(0, 0, 0, .75);
    min-height: 660px;
    margin: auto;
    padding: 40px 58px 40px;
    margin-bottom: 90px;
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

input[name="email"],
input[type="password"] {
    outline: none;
    margin-bottom: 15px;
    background: #333;
    border-radius: 4px;
    width: 100%;
    border: 0;
    color: #fff;
    height: 50px;
    line-height: 50px;
    padding: 16px 20px 0;
}

#error_one,
#error_two {
    display: none;
    color: #e87c03;
    font-size: 13px;
}

#error_one {
    margin-bottom: 10px;
}

#container_input {
    position: relative;
}

#container_input>span {
    position: absolute;
    top: 15px;
    color: #ada4a4;
    left: 19px;
    font-size: 15px;
}

#submit {
    background: #e50914;
    width: 100%;
    outline: none;
    height: 47px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    border: 1px solid transparent;
    color: white;
    font-weight: 700;
    margin-top: 25px;
}

.placeholder {
    transition: 0.1s;
}

footer {
    width: 100%;
    background: rgba(0, 0, 0, .75);
}

footer>section {
    width: 1000px;
    padding: 20px 0px;
    margin: auto;
}

ul {
    padding: 0px;
}

li {
    color: #757575;
    width: 24%;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
}

@media screen and (max-width: 1100px) {
    footer>section {
        width: 91%;
    }
}

@media screen and (max-width: 532px) {
    body {
        background: black;
    }

    #logo {
        margin: 20px 0px 20px 4%;
        width: 84px;
    }

    #main {
        width: 100%;
        margin-bottom: 20px;
        min-height: initial;
        padding: 0px 24px 0px;
    }

    li {
        width: 49%;
    }

    footer>section {
        width: 86%;
    }

    footer {
        width: 100%;
        background: rgba(0, 0, 0, .75);
        margin-top: 110px;
        border-top: 1px solid #4b4b4b;
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

    select,
    textarea,
    input {
        font-size: 16px;
    }
}