body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7; /* Couleur de fond douce */
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #ff7f50; /* Bordure orange */
    position: relative;
}

.logo-container {
    text-align: center; /* Centrer le logo */
    margin-bottom: 20px; /* Espace entre le logo et le titre */
}

.logo-container img {
    max-width: 150px; /* Taille maximale du logo */
    height: auto;
    display: inline-block; /* Assure que le logo reste centré */
}

h1 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #ff7f50; /* Trait orange en dessous du titre */
    padding-bottom: 10px;
}

label {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
    color: #555;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 15px;
    color: #495057;
    background-color: #fff8e1; /* Couleur de fond légèrement orangée */
}

input:focus, select:focus, textarea:focus {
    border-color: #ff7f50; /* Bordure orange lorsqu'on clique */
    background-color: #ffefdf; /* Fond légèrement orangé lorsqu'on clique */
    outline: none;
}

button {
    width: 100%;
    background-color: #ff7f50; /* Bouton orange */
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e56d3b; /* Couleur orange plus foncée au survol */
}

button:active {
    background-color: #cc5c2e; /* Couleur orange encore plus foncée au clic */
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to right, #ff7f50, #e56d3b, #cc5c2e); /* Dégradé orange */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Styles pour le pied de page */
.footer {
    text-align: center;
    margin-top: 30px;
    padding: 10px;
    border-top: 2px solid #ff7f50; /* Bordure orange */
    color: #000; /* Texte en noir */
}

.footer p {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
}
