body {
    font-family: Arial, sans-serif;
    background-color: #e9ecef;
    color: #333;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 50px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

#contenu_c {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#titre {
    font-size: 30px;
    font-weight: bold;
    color: #0056b3;
    text-align: center;
    margin-top: 20px;
}

#sous-titre {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

#identifiants table {
    width: 100%;
    border-collapse: collapse;
}

#identifiants th, #identifiants td {
    padding: 8px;
    text-align: left;
}

#identifiants input[type="text"], #identifiants input[type="password"] {
    width: calc(100% - 40px);
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.bouton_nav {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 4px;
}

.bouton_nav:hover {
    background-color: #004494;
}

a {
    color: #007bff;
    text-decoration: none;
	text-align: center;
	display: inline-block;
}

a:hover {
    text-decoration: underline;
}

.message {
    color: red;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.support {
    margin: 20px 0;
    font-size: 14px;
}

.information {
    margin: 20px 0;
    font-size: 12px;
    text-align: justify;
}

#togglePassword img {
    cursor: pointer;
}
