a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a,
a:hover {
  text-decoration: none !important;
}

.col-lg-7 {
    margin-right: 4em; /* espace à droite */
}

/* inputs with no background */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
background-color: transparent;
transition: background-color 5000s ease-in-out 0s;
}

input[type="text"] {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #ccc;
        padding: 5px;
        outline: none;
        transition: border-color 0.3s;
    }

    /* Effet au focus */
    input[type="text"]:focus {
        border-bottom-color: #666; /* Bordure plus foncée au focus */
    }

#notify .content {
  padding: 7rem 0;
  color: #000;
  font-family: 'Poppins', sans-serif;
}

#notify h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.5rem
}

#notify h3 {
  font-size: 2rem;
  font-weight: 700;
}

.form-control {
  border: none;
  border-bottom: 1px solid #d9d9d9;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  background: #f2e9e9;
}

.form-control:active,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000;
  background: none;
}

.btn,
.form-control {
  height: 55px;
}

#contactForm input::placeholder {
  color: #808080;
  opacity: 1;
}

/* checkbox RGPD */
.rgpd input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.rgpd label {
  font-size: 1rem;
  cursor: pointer;
  width: 50px;
  height: calc(50px / 2);
  background: grey;
  display: block;
  border-radius: 100px;
  position: relative;
}

.rgpd label:after {
  content: '';
  position: absolute;
  top: 6%;
  left: 2.5%;
  width: calc(50% - 5%);
  height: calc(100% - 11%);
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

.rgpd input:checked+label {
  background: #bada55;
}

.rgpd input:checked+label:after {
  left: calc(100% - 2.5%);
  transform: translateX(-100%);
}

.rgpd label:active:after {
  width: 55%;
}

/* Send Button */
.my-button {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #000;
  background-color: #abcdef;
  border-color: #abcdef;
  border-radius: 0.375rem;

  /* py-2 */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;

  /* px-4 */
  padding-left: 1.5rem;
  padding-right: 1.5rem;

  /* mt-4 */
  margin-top: 1.5rem;

  /* Hover, focus, active states */
  &:hover {
    color: #fff;
    background-color: #F9007C;
    border-color: #F9007C;
  }

  &:focus {
    box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
  }

  &:active {
    background-color: #F9007C;
    border-color: #F9007C;
  }
}

.captcha p {
  margin-top: 1.5rem;
  font-style: italic;
}

.captcha input[type="text"] {
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 5px;
        transition: border-color 0.3s;
    }

    /* Effet au focus */
    input[type="text"]:focus {
        border-bottom-color: #666; /* Bordure plus foncée au focus */
    }

.intro {
  font-size: 1.2rem;
  font-weight: 700;
}

label.error {
  font-size: 12px;
  color: red;
}

#form-message-warning {
  color: #e10000;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background-image: url('../../images/warning.svg');
  Background-position: center;
  Background-repeat: no-repeat;
  Background-origin: content-box;
  background-size: cover;	
}

.message-warning {

}

#form-message-success {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  padding-right: 30px; 
  line-height: 1.5rem;
  background-image: url('../../images/success.svg');
  Background-position: center;
  Background-repeat: no-repeat;
  Background-origin: content-box;
  background-size: cover;	
}

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 12px;
  color: #000;
}