/* Formulaire */
.contact-form-container {
  display: flex;
  justify-content: center;
  max-width: 600px;
}

.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: #e9e9e9 solid 2px;
  width: 100%;
}

.form-title {
  font-size: 28px;
  font-family: "GillSansMTPro-Medium", sans-serif;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-subtitle {
  font-size: 20px;
  color: #666;
  font-weight: 300;
  text-align: center;
  margin-bottom: 40px;
  font-family: "GillSansMTPro-Light", sans-serif;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
  display: flex;
  align-items: center;
}

.form-icon {
  position: absolute;
  left: 15px;
  font-size: 16px;
  color: #999;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: none;
  border-bottom: 1px solid rgb(167, 167, 167);

  font-size: 16px;
  font-family: "GillSansMTPro-Light", sans-serif;

  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #00305C;
  background: white;
}

.form-input::placeholder {
  color: #000000;
  font-size: 18px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-input {
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  font-family: "GillSansMTPro-Light", sans-serif;
}

.policy-link {
  color: #00305C;
  text-decoration: none;
}

.policy-link:hover {
  text-decoration: underline;
}

.form-submit {
  background: #00305C;
  border: none;
  color: white;
  padding: 12px 30px 10px 30px;
  border-radius: 50px;
  font-size: 30px;
  font-weight: 500;
  font-family: "GillSansMTPro-Light", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  align-self: center;
}

.form-submit:hover {
  background: #1e2833;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .contact-form-card {
    padding: 30px 25px;
    width: 90%;
  }

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

.contact-form ul li {
    list-style-type: none;
    color: #951332;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert {
    padding-right: 20px;
    padding-left: 20px;
}

#contact_phone {
	display: flex !important;
}
#contact_phone.form-input {
	padding: 0;
	border-bottom: 0;
}
#contact_phone #contact_phone_number {
	border: none;
	height: 50px;
	padding: 15px 15px 15px 45px;
	width: 100%;
	border-bottom: 1px solid rgb(167, 167, 167);
    font-size: 16px;
    font-family: "GillSansMTPro-Light", sans-serif;
    transition: all 0.3s ease;
    background: url("../asset/contact/phone-f7ae6d2d1e061738a75c560b9afc28ef.svg") no-repeat 10px center;
}
#contact_phone_country {
	display: block !important;
	max-width: 150px;
	width: 150px;
}
#contact_phone_number { margin-left: 10px; }
#contact_phone .ts-wrapper {
    width: 150px !important;
    max-width: 150px !important;
}

#contact_phone .ts-control {
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 50px;
    font-size: 16px;
    padding-top: 16px;
    position: relative;
    padding-right: 25px;
}
#contact_phone .ts-control::after {
    content: "▾" !important;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    opacity: 0.6;
}
#contact_phone .ts-dropdown {
	border: 1px solid #ced4da;
    padding: 4px 10px;
    min-width: 290px;
}
#contact_phone .ts-dropdown .active {
    background-color: #00305C;
    color: #FFF;
}
@media (max-width: 440px){
	#contact_phone .ts-control {
		font-size: 13px;
		padding-top: 15px;
	}
	#contact_phone .ts-dropdown {
		min-width: 270px;
	}
	#contact_phone .ts-control {
		width: 100px;
	}
}
