/* Style général */
body {
  background: linear-gradient(to right, #ffffff, #b7b9ba);
  font-family: 'Segoe UI', sans-serif;
  color: #363434;
  margin: 0;
  padding: 0;
}

/* Container principal */
.container-custom {
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 0 15px;
}

/* Section image et texte de bienvenue */
.image-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

.image-side img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

/* Texte de bienvenue */
.welcome-text h1 {
  font-size: 2rem;
  color: #004085;
  margin-bottom: 10px;
}

.welcome-text p {
  font-size: 1rem;
  color: #333;
}

/* Formulaire */
.form-container {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  animation: slideIn 1s ease forwards;
  opacity: 0;
}

.form-title {
  text-align: center;
  color: rgb(66, 41, 0);
  margin-bottom: 25px;
  font-size: 1.5rem;
}

/* Bouton */
.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

    .blo {
      max-width: 600px;
      margin: 50px auto;
      background-color: rgba(255, 255, 255, 0.9);
      border: 6px solid #f47c20;
      padding: 5px 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      position: relative;
    }

    .invitation-title {
      text-align: center;
      font-weight: bold;
      font-size: 24px;
      color: #b7952a;
      margin-bottom: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .logo img {
      max-height: 60px;
      margin: 0 10px;
    }

    .description {
      text-align: center;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .info {
      text-align: center;
      font-size: 16px;
    }

    .info .item {
      margin: 10px 0;
    }

    .separator {
      border-top: 2px solid #cfa53e;
      margin: 20px auto;
      width: 60%;
    }

    .footer {
      text-align: center;
      margin-top: 20px;
      font-size: 15px;
    }
/* Animations */
@keyframes slideIn {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .welcome-text h1 {
    font-size: 1.6rem;
    
  }
.form-dis {
  background: linear-gradient(to right, #ffffff, #939495);
}
body {
  background: linear-gradient(to right, #ffffff, #e6e6e6);
  font-family: 'Segoe UI', sans-serif;
  color: #363434;
  margin: 0;
  padding: 0;
}
  .welcome-text p {
    font-size: 0.95rem;
  }

  .form-dis {
    padding: 20px;
  }

  .form-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .container-custom {
    margin-top: 20px;
  }
.form-dis {
  background: linear-gradient(to right, #ffffff, #939495);
  
}
body {
  background: linear-gradient(to right, #ffffff, #e6e6e6);
  font-family: 'Segoe UI', sans-serif;
  color: #363434;
  margin: 0;
  padding: 0;
}
  .image-side {
    margin-bottom: 5px;
  }

  .welcome-text h1 {
    font-size: 1.4rem;
  }

  .welcome-text p {
    font-size: 0.9rem;
  }

  .form-dis {
    padding: 15px;
  }

  .form-title {
    font-size: 1.2rem;
  }
}
