body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #04516d;
}

.container {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #ffffff;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    /*display: block;*/
    margin-bottom: 5px;
    color: #555;
}

input[type="datetime-local"],
input[type="number"],
input[type="text"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="radio"] {
    width: 20px;
    height: 50px;
    margin-right: 10px;
}

input[type="file"] {
    width: 200px;
    height: 50px,
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.custom-button {
    width: 95%;
    height: 100px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #2980b9;
}

.camera-button {
    background-color: rgb(163, 189, 228);
    width: 95%;
    height: 80vh;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

 /* Style pour l'icône d'appareil photo */
.camera-icon::before {
    content: "\1F4F7"; /* Code Unicode pour l'icône d'appareil photo */
    font-size: 240px;
    margin-right: 10px;
}

