/* Style global */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/logo3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Conteneur principal */
.container {
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 85%;
  margin: 20px;
}

/* Header */
h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

h1 span {
  color: #ffd60a;
}

p {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Bouton stylisé */
button {
  background: linear-gradient(135deg, #0a5cff, #ffb703);
  color: #fff;
  font-size: 20px;
  padding: 12px 25px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

button:hover {
  background: linear-gradient(135deg, #ffb703, #ffd60a);
  transform: scale(1.05);

}
