/* 🎨 Design BM PROMOTION - Noir, Doré & Blanc */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #d4af3717;
  color: #222;
  margin: 0;
  padding: 0;
}

/* Barre de titre */
header {
  background: #ffffff;
  color: #d4af37;
  text-align: center;
  padding: 20px 10px;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Main layout */
main {
  padding: 20px;
}

/* Formulaires */
form {
  max-width: 720px;
  background: white;
  margin: 20px auto;
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
}

label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: #222;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-top: 6px;
  transition: 0.2s;
  font-size: 0.95rem;
}

input:focus, select:focus, textarea:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 6px rgba(212,175,55,0.18);
}

/* Bouton principal */
button {
  background: #d4af37;
  color: white;
  border: none;
  padding: 12px 18px;
  margin-top: 18px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: 0.2s;
}

button:hover {
  background: #b9962e;
}

/* Links */
a {
  text-decoration: none;
  color: #d4af37;
  font-weight: 600;
}

a:hover {
  color: #000;
}

/* Login */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #f4f4f4;
}

.login-box {
  background: white;
  padding: 36px 44px;
  border-radius: 12px;
  box-shadow: 0 3px 30px rgba(0,0,0,0.35);
  text-align: center;
  width: 340px;
}

.login-box h3 {
  color: #d4af37;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.login-box input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 10px;
  margin-bottom: 14px;
}

/* Tableau */
table {
  width: 95%;
  border-collapse: collapse;
  margin: 20px auto;
  background: white;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

th {
  background: #d4af37;
  color: #ffffff;
  text-transform: uppercase;
  padding: 12px;
  font-size: 0.9rem;
}

td {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  font-size: 0.9rem;
}

tr:hover {
  background-color: #fff9ed;
}

/* Footer */
footer {
  text-align: center;
  padding: 14px;
  color: #777;
  font-size: 0.9rem;
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  form { padding: 18px; margin: 12px; }
  .login-box { width: 92%; padding: 22px; }
  table { width: 98%; }
}

.btn-dashboard {
  display: inline-block;
    background: #ffffff66;
    color: #353535;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
      border: 2px solid #d4af37;

}
.btn-dashboard:hover {
  background: #ebcf76;
}

.ttire{
    text-align: center;
       color: #000000;
    font-weight: 800;
}