@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,700;1,100;1,300;1,400;1,700&display=swap');

body{
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background:url(./image/bg-landing-guide.jpg)
}

header, footer {
  background-color: #3D1CA0;
  display: flex;
  justify-content: center;
  height: 70px;
  align-items: center;
}

header img{
  height: 80px;
}

.mobilephonemessage{font-size:14px;margin:4px 0;color:red}

main {
  background: none ;
  display: flex;
  justify-content: center;
  padding-bottom: 1%;
}

.offre {
  width: 94%;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

h1, h2 {
  text-align: center;
  color: #3D1CA0;
  line-height: 1.2;
  margin: 1%;
}

h1 {
  font-size: 25px;
}

h2 {
  font-size: 20px;
  font-weight: normal;
}

.content {
  background-color: none;
  border-radius: 30px;
  width:40%;
  padding:2%;
  margin-right:1%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
}
.header-title {
  background: none;
  padding: 1%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
}

.vignette {
    height: auto; 
    width: auto; 
    max-width: 500px; 
}

.guide_content {
  display: flex;
  flex-direction: column;
  color: #3d1ca1;
}

.guide_content li strong{color:#00d4cc}
.guide_content strong{color:#3d1ca1}

ul {
  line-height: 1.4;
}

form {
display: flex;
flex-direction: column;
background:#00d4cc;
padding:2%;
border-radius:15px
}

.form {
  display: flex;
  flex-direction: column;
  width:44%;
  margin-left:1%;
}

label {
  margin-top: 10px;
  margin-bottom: 5px;
  color: #3D1CA0;
  line-height: 1;
}

input, select {
  border-radius: 25px;
  border: none;
  height: 35px;
  font-family: 'Poppins', sans-serif;
  padding-left:10px;
}

select {
  background-color: white;
  color: #3D1CA0;
  font-size: 15px;
}

select:hover {
  cursor: pointer;
}

option {
  color: #3D1CA0;
}

option:hover {
  background-color: #00d4cc;
  color:#000;
}

.cpvp {
  display: flex;
  text-align: justify;
}

span {
  font-size: 10px;
  color: ##fff;
  padding: 2%;
  line-height: 15px;
}

span a {
  color: #fff;
}

span a:hover {
  color: #3D1CA0;
  text-decoration: none;
}

.checkbox {
  border-radius: 50%;
}

input[type="submit"] {
  background-color: #3D1CA0;
  color: white;
  border: 2px solid #3D1CA0;
  font-size: 20px;
  border-radius: 25px;
  height: 50px;
  width: 300px;
}

input[type="submit"]:hover {
  cursor: pointer;
  background-color: #00d4cc;
}

.rgpd {
  display: flex;
  text-align: justify;
}

.rgpd span {
  font-size: 10px;
}

footer a {
  text-decoration: none;
  color: #fff;
}

footer a:hover {
  cursor: pointer;
  color: #00d4cc;
}

/* RESPONSIVE */

@media (max-width: 800px) {

	body{background:none}
	
    .offre {
      flex-direction: column-reverse;
    }
	
	.content{width:100%}
	
	.vignette{width:100%}

    .content img {
      max-width: 300px;
    }
	
	.form{width:100%;align-items: center;}
	
	form{max-width:450px}

    h1 {
      font-size: 20px;
    }
    
    h2 {
      font-size: 15px;
    }

    label,input, select {
      font-size: 15px;
    }
    
    button {
      font-size: 15px;
    }
	
	input[type="submit"]{width:270px;font-size:17px}
}