/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  padding: 0px;
}


/* --- BARRE DE NAVIGATION --- */
.navbar {
  width: 100%;
  background-color: white;
  box-shadow: none;
  padding: 10px 0;
}

/* --- CONTENEUR PRINCIPAL --- */
.navbar-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- LOGOS --- */
.logo-img-left {
  height: 50px;
  width: auto;
}

.logo-img-right {
  height: 75px;
  width: auto;
}

/* --- Icône mobile (optionnel si tu veux l’utiliser plus tard) --- */
.mobile-only {
  display: none;
}


h2 {
  font-size: 18px;
}

header > div {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #134779;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  min-height: 10vh;
}

header > div > button {
  background-color: #134779;
  color: white;
  border: none;
  padding: 7px 14px;
}

/* header > div > button::before {
  content: "<--";
  letter-spacing: -3px;
} */
.container-body {
  background-color: #134779;
  min-height: 75vh;
}
.container {
  max-width: 1000px;
  width: 100%;
  min-height: 75vh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 .container-div-1,
.container-div-2 {
  width: 50%;
}  

.form-section {
  border: solid 2px white;
  padding: 40px 20px;
  color: white;
}
.form-section > h2 {
  padding-bottom: 5px;

  margin-bottom: 20px;
}
.form-section input {
  border: solid 1px white;
  color: white;
  width: 100%;
  height: 35px;
  background-color: #134779;
}
.form-section input::placeholder {
  color: white;
  padding-left: 5px;
}
.form-section input:focus {
  outline: none;
}
#submit-btn {
  background-color: white;
  color: #134779;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  height: 35px;
  border: none;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  margin: 10px 0px;
}
.result-section {
  background-color: white;
  margin: 20px 0;
  padding: 5px 5px 15px 5px;
}
.result-section > h2 {
  text-align: center;
  background-color: #134779;
  color: white;
  padding: 3px;
}
.result {
  padding: 15px;
}
td {
  width: 50%;
  padding: 10px 0px;
}
tr > td:first-child {
  color: #134779;
  font-weight: bold;
}
 #illustration{
    display: flex;
    align-items: center;
    justify-content: end;

}  

/* LEFT */
 
/* .layout-result-right {
  width: 343px;
  height: 286px;
}
.layout-result-right img {
  width: 100%;
  height: auto;
} */

footer {
  background-color: white;
  color: black;
  min-height: 15vh;
  text-align: center;
  padding: 10px;
}
footer > p {
  padding: 5px 0;
}
footer > p > a {
  text-decoration: underline;
  color: black;
}


/* --- RESPONSIVE --- */
@media (max-width: 960px) {
  .mobile-only {
    display: block;
  }
} 
 
@media (max-width: 768px) {
  header > div {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #134779;
    padding: 10px;
  }
  .container-div-1 {
    width: 90%;
    margin: auto
  }
  .container-div-2,#illustration {
    display: none;
  }
}
