body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


.form-container {
  background-color: rgba(255, 255, 255, 0.88);
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  height: 380px;
  max-width: 800px;
  z-index: 2;
  text-align: center;
  border: #2E7488 solid 6px;
  position: relative;
}

/* .form-container::after {
  content: "100% Gratuit";
  position: absolute;
  top: 0px;
  right: -45px;
  background-color: #ff0000;
  color: #fff;
  padding: 5px 10px;
  font-size: 24px;
  border-radius: 5px;
  font-weight: bold;
  transform: rotate(25deg);
  z-index: 3;
} */


@media screen and (min-width: 2900px) and (max-width: 3100px) {
    .form-container {
        width: 100%; /* Adjust the width */
        height: 500px;
        /* align-items: center; */
        /* justify-content: center; */
    }
}

.form-container h3{
    position: relative;
    bottom: 100%;
    color: #000000;
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    display: inline-block;
}


.form-container p{
    padding: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
}

.form-container img{
    filter: brightness(100%);
    padding: 30px;
    border: 3px solid #467112;
    background: white;
    border-radius: 5px;
    box-shadow:  3px 6px rgba(1,0,36,.05);
    transition: transform 0.5s ease;
    cursor: pointer; /* Permet de cliquer sur l'image */
}

.form-container img:hover {
    filter: brightness(100%);
    border: 6px solid #467112;
    background: #3a8dff;
    box-shadow:  5px 10px rgba(1, 0, 18, 0.05);
    transform: scale(1.1); /* Zoom effect on hover */

}

.step-abc img {
    width: 60px !important;
    height: 60px !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 20px !important;
    margin-right: 20px !important;
    z-index: 1000 !important;
    box-shadow: 0 14px 18px rgba(7, 28, 124, 0.498) !important;
}



.form-step {
    display: none;
}


.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.options {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.option {
    text-align: center;
    cursor: pointer;
}

.options img {
    animation: zoom 1.3s ease-in-out infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.09);
  }
  100% {
    transform: scale(1);
  }
}

.option img {
    width: 150px;
    height: 150px;
    margin: auto;
}

.option p {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: bold;
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
}

.form-step input {
    font-size: 14px;
    padding: 23px 12px;
}

.form-row input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-row input::placeholder{
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .form-row input {
        padding: 0px ;
    }
    
    .form-button {
    	padding: 4px !important;
    }

    .step-abc{
        margin-top: -25px;
    }
}

.form-button {
    display: block;
    width: 60%;
    padding: 10px;
    background: linear-gradient(135deg,#5451ff,#3a8dff);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 20%;
    transition: transform 0.5s ease;
}


.form-button:hover {
    background: linear-gradient(135deg,#18a136,#25c137);
    transform: scale(1.1); /* Zoom effect on hover */
}

.suggestions {
    list-style-type: none;
    padding: 0;
    margin: 0;
    max-height: 150px;
    overflow-y: auto;
    background-color: white;
    position: absolute;
    z-index: 1000;
    width: calc(100% - 40px); /* Adjust width based on your input's padding */
}

.suggestions li {
    padding: 10px;
    cursor: pointer;
}

.suggestions li:hover {
    background-color: #eee;
}

.step-data-adresse {
    font-size: 1.4rem !important;
}

#step-4 img{
    height: 60px;
    width: 60px;
    border: none;
    background: none;
    padding: 0%;
    top: 10px;
    position: relative;
}

#step-4 input{
    padding: 2%;
    font-size: 2rem;
}

#step-4 input::placeholder{
    text-align: center 
}

#suggestions{
    left: 17%;
    width: 480px;
    font-size: 2rem;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.adresse-container {
    position: relative;
    display: flex;
    width: 70%;
    margin-left: 20px;
    margin: auto;
}
.adresse-container input {
    flex-grow: 1;
}

.adresse-container img {
    filter: brightness(100%);
    margin-left: 10px;
    cursor: pointer;
    position: relative !important;
    top: 10% !important;
}

