body {
	padding: 0;
}

main {
    flex: 1;
    margin-left: 260px; 
    display: flex;
    flex-direction: column;
    padding: 5vh 30vh;
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
  }
  
@media (max-width:1350px){
	main {
		padding : 2rem;
	}
 }

/* ------- TITRE ------- */

.titre {
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    text-align: center;
    margin-bottom: 0;
}

.titre h2 {
    font-size: 2.5vw;
    padding: 25px 0;
}

/* ---------------- INFO ---------------- */

.info {
    width: 100%;
    padding: 20px;
    display: flex;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.62);
    color: white;
    border-radius: 2.5%;
}

h3 {
    font-size: large;
    text-shadow: 2px 2px 2px rgb(0, 0, 0);
    padding: 10px 0;
}

.colonne {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-content p{
    line-height: 1.4rem;
}

/* ---------------- FORMULAIRE ---------------- */

.input-section {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.input-section label {
    font-weight: bold;
}

.input-section input,
.input-section textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

.input-section input {
    height: 35px;
}

.input-section textarea {
    height: 230px;
}

.input-section input:focus,
.input-section textarea:focus {
    border-color: #f0b400;
    outline: none;
    box-shadow: 0 0 5px rgba(240, 180, 0, 0.5);
}

/* ---------------- BOUTON ENVOYER ---------------- */

.boutton-envoyer {
    display: flex;
    justify-content: flex-end;
}

.boutton-envoyer input {
  border: 2px solid;
  border-color:#444;
  line-height: 2.5;
  padding: 0 20px;
  font-size: 1rem;
  text-align: center;
  color: #000000;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
}

.boutton-envoyer input:hover {
    border-color: #f0b400;
    background-color: rgb(255, 255, 255);
}

.boutton-envoyer input:active {
  box-shadow:
    inset -2px -2px 3px rgba(255, 255, 255, 0.6),
    inset 2px 2px 3px #f0b400;
}