@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Montserrat:wght@400;600;700&display=swap");



body {
    background-image: url('../img/home-bg.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
  }

form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - var(--header-height)); 
  }
  
  .corps-formulaire {
    width: 80%; 
    max-width: 600px; 
    padding: 2rem;
    background-color: var(--container-color); 
    border-radius: 10px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); 
  }
  
  .groupe {
    margin-bottom: 1.5rem; 
  }
  
  .groupe label {
    display: block; 
  }
  
  .groupe input,
  .groupe textarea {
    width: 100%; 
    padding: 0.75rem; 
    font-size: 1rem; 
    border-radius: 5px;
    border: 1px solid var(--text-color-light); 
  }
  
  .groupe textarea {
    resize: vertical; 
  }
  
  .pied-formulaire {
    text-align: center; 
  }
  
  .pied-formulaire input[type="submit"] {
    background-color: var(--first-color);
    color: var(--title-color); 
    padding: 0.75rem 1.5rem; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
  }
  
  .pied-formulaire input[type="submit"]:hover {
    background-color: var(--first-color-alt); 
  }
  


