body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

@media (max-width: 768px) {
    h2, h3 {
        font-size: 14px; /* Réduire la taille pour les écrans plus petits */
        text-align: justify; /* Peut-être mieux centrer le contenu ou le justifier */
        margin-left: 5px;
        margin-right: 5px;
    }

    .container {
        width: 100%; /* Assure que l'ensemble des textes et boîtes sont visibles */
        padding: 15px; /* Ajuste les marges pour que tout soit plus lisible */
    }
}

input, textarea {
    font-size: 16px; /* Empêche le zoom automatique */
}

.container {
   
    padding-right: 25px;
	padding-left: 5px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 450px;
    max-width: 100%;
	max-height: 100%;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 10px;
    text-align: center;
    color: #555;
}
h3 {
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 10px;
    text-align: center;
    color: #555;
}


label {
    display: block;
    margin: 10px 0 5px;
}

input, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.signature-container {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f4f4f9;
    padding: 5px;
    text-align: center;
}

canvas {
    border: 1px solid #000;
}

#clear {
    margin-top: 10px;
    background-color: #dc3545;
    color: white;
}
