*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;

}
html,body{
    height: 100%;
    width: 100%;
}
.container{
    background-image: url(../img/bg.jpg);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .logo{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.logo img{
    height: 10vh;
}
.content_container{
    background: #e1dddd;
    height: 60vh;
    width: 27vw;
    padding: 20px;
}
.content_container .content{
    padding: 10px;
}
.content p{
    color: #0067b8;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bolder;
}
.content input{
    width: 100%;
    margin-bottom: 10px;
    border: none;
    background: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.6);
    padding: 10px;
    outline: none;
}
.content_container .link a{
    color: #0067b8;
    text-decoration: none;
}

.content_container .button{
    display: flex;
    justify-content: end;
    align-items: center;
}
.button .btn{
    background: #005da6;
    padding: 10px;
    color: #fff;
}


/* Responsive Design */

/* Pour les tablettes (max 768px) */
@media (max-width: 768px) {
    .content_container {
        width: 60vw;
        height: auto;
        padding: 30px;
    }

    .content p {
        font-size: 13px;
    }

    .content input {
        font-size: 13px;
        padding: 8px;
    }

    .button .btn {
        font-size: 13px;
        padding: 10px;
    }
}

/* Pour les mobiles (max 480px) */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .logo img {
        height: 8vh;
        max-height: 60px;
    }

    .content_container {
        width: 90vw;
        height: auto;
        padding: 20px;
    }

    .content p {
        font-size: 12px;
    }

    .content input {
        font-size: 12px;
        padding: 8px;
    }

    .button {
        margin-top: 10px;
    }

    .button .btn {
        text-align: center;
    }
}