* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

.container_login {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.all_inform {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   
    padding: 30px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}
.img_title_container {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.img_boneco {
    width: 170px;
    height: 170px;
    margin-bottom: 15px;
    
}

.img_boneco img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.texte_circle 
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.texte_circle h4 {
    font-size: 2rem;
    color: #F49619;
    margin-bottom: 5px;
}

.texte_circle p {
    font-size: 14px;
    color: #666;
    max-width: 250px;
}

.form_section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}
.option_input
{
    display: flex;
    justify-content: space-around;
}
.option_input>a{
    color: #d57d15;
    text-decoration: none;
}
.form_section input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.form_section input:focus {
    border-color: #F49619;
    box-shadow: 0px 0px 5px rgba(244, 150, 25, 0.5);
}

.form_section input[type="submit"] {
    background-color: #F49619;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.form_section input[type="submit"]:hover {
    background-color: #d57d15;
}

@media (max-width: 450px) {
    .all_inform {
        padding: 20px;
    }

    .texte_circle h4 {
        font-size: 1.8rem;
    }

    .texte_circle p {
        font-size: 13px;
    }
}
