/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: #57b846;
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

p {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}


/*---------------------------------------------*/
input {
  outline: none;
  border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus,
input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: #999999;
}

input:-moz-placeholder {
  color: #999999;
}

input::-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder {
  color: #999999;
}

textarea::-webkit-input-placeholder {
  color: #999999;
}

textarea:-moz-placeholder {
  color: #999999;
}

textarea::-moz-placeholder {
  color: #999999;
}

textarea:-ms-input-placeholder {
  color: #999999;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.5;
  color: #999999;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.5;
  color: #666666;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #9053c7;
  background: -webkit-linear-gradient(-135deg, #c850c0, #4158d0);
  background: -o-linear-gradient(-135deg, #c850c0, #4158d0);
  background: -moz-linear-gradient(-135deg, #c850c0, #4158d0);
  background: linear-gradient(-135deg, #c850c0, #4158d0);
}

.wrap-login100 {
  width: 90%;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 100px 130px 33px 95px;
}

/*------------------------------------------------------------------
[  ]*/
.login100-pic {
  width: 20%;
}

.login100-pic img {
  max-width: 100%;
}


/*------------------------------------------------------------------
[  ]*/
.login100-form {
  width: 80%;
}

.login100-form-title {
  font-family: Poppins-Bold;
  font-size: 20px;
  color: #333333;
  line-height: 1.2;
  text-align: center;

  width: 100%;
  display: block;
  padding-bottom: 24px;
}


/*---------------------------------------------*/
.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
}

.input100 {
  font-family: Poppins-Medium;
  font-size: 13px;
  line-height: 1.5;
  color: #666666;

  display: block;
  width: 100%;
  background: #e6e6e6;
  height: 40px;
  border-radius: 25px;
  padding: 0 30px 0 68px;
}


/*------------------------------------------------------------------
[ Focus ]*/
.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(87, 184, 70, 0.8);
}

.input100:focus+.focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

.symbol-input100 {
  font-size: 13px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 35px;
  pointer-events: none;
  color: #666666;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus+.focus-input100+.symbol-input100 {
  color: #57b846;
  padding-left: 28px;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.login100-form-btn {
  font-family: Montserrat-Bold;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;

  width: 100%;
  height: 40px;
  border-radius: 25px;
  background: #57b846;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.register100-form-btn {
  font-family: Montserrat-Bold;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;

  width: 100%;
  height: 40px;
  border-radius: 25px;
  background: #2196F3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  background: #333333;
}

.register100-form-btn:hover {
  background: #1976D2;
}


/*------------------------------------------------------------------
[ Responsive ]*/



@media (max-width: 992px) {
  .wrap-login100 {
    padding: 100px 90px 33px 85px;
  }

  .login100-pic {
    width: 35%;
  }

  .login100-form {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .wrap-login100 {
    padding: 100px 80px 33px 80px;
  }

  .login100-pic {
    display: none;
  }

  .login100-form {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 100px 15px 33px 15px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 13px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;

  font-family: Poppins-Medium;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*//////////////////////////////////////////////////////////////////
[ MODAL STYLES ]*/

.modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  color: white;
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}

.modal-header .close {
  color: white;
  opacity: 0.8;
  text-shadow: none;
}

.modal-header .close:hover {
  opacity: 1;
}

.modal-title {
  font-family: Poppins-Bold;
  font-size: 18px;
}

.modal-body {
  padding: 30px;
}

.modal-footer {
  border-top: 1px solid #e9ecef;
  padding: 20px 30px;
}

.form-group label {
  font-family: Poppins-Medium;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.form-control {
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  padding: 12px 15px;
  font-family: Poppins-Regular;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #57b846;
  box-shadow: 0 0 0 0.2rem rgba(87, 184, 70, 0.25);
}

.form-check-input:checked {
  background-color: #57b846;
  border-color: #57b846;
}

.form-check-label {
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #666;
  margin-left: 8px;
}

.btn {
  font-family: Poppins-Medium;
  font-size: 14px;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(-135deg, #b840b0, #3148c0);
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(-135deg, #57b846, #4a9c3a);
  border: none;
}

.btn-success:hover {
  background: linear-gradient(-135deg, #4a9c3a, #3d7d2e);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #6c757d;
  border: none;
}

.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.alert {
  border-radius: 8px;
  border: none;
  font-family: Poppins-Regular;
}

.alert-info {
  background: linear-gradient(135deg, #d1ecf1, #bee5eb);
  color: #0c5460;
}

.text-danger {
  color: #dc3545 !important;
}

/* Progress indicator */
.modal-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #57b846, #4a9c3a);
  transition: width 0.3s ease;
}

#modalStep1 .modal-header::before {
  width: 25%;
}

#modalStep2 .modal-header::before {
  width: 50%;
}

#modalStep3 .modal-header::before {
  width: 75%;
}

#modalStep4 .modal-header::before {
  width: 100%;
}

/* Summary styles */
#summaryContent h6 {
  font-family: Poppins-Bold;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #57b846;
}

#summaryContent p {
  margin-bottom: 8px;
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #666;
}

#summaryContent strong {
  color: #333;
  font-family: Poppins-Medium;
}

/* Styles pour le formulaire multi-étapes */
.progress-indicator {
  margin-bottom: 30px;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e9ecef;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  background: white;
  padding: 0 10px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  text-align: center;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.step.active .step-label {
  color: #667eea;
}

.step.completed .step-number {
  background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
  color: white;
}

.step.completed .step-label {
  color: #56ab2f;
}

.multi-step-form {
  position: relative;
}

.form-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  color: #333;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #e9ecef;
}

/* Styles pour le résumé */
#summaryContent {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.summary-section {
  margin-bottom: 20px;
}

.summary-section h6 {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #dee2e6;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  padding: 5px 0;
}

.summary-label {
  font-weight: 600;
  color: #555;
}

.summary-value {
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 10px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-footer {
    padding: 15px 20px;
  }

  .form-check-inline {
    display: block;
    margin-bottom: 10px;
  }

  .step-indicator {
    flex-wrap: wrap;
  }

  .step {
    margin-bottom: 20px;
  }

  .form-navigation {
    flex-direction: column;
    gap: 10px;
  }

  .form-navigation .btn {
    width: 100%;
  }
}


/* Styles pour le formulaire multi-étapes */
.progress-indicator {
  margin-bottom: 30px;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e9ecef;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  background: white;
  padding: 0 10px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  text-align: center;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.step.active .step-label {
  color: #667eea;
}

.step.completed .step-number {
  background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
  color: white;
}

.step.completed .step-label {
  color: #56ab2f;
}

.multi-step-form {
  position: relative;
}

.form-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  color: #333;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #e9ecef;
}

/* Styles pour le résumé */
#summaryContent {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.summary-section {
  margin-bottom: 20px;
}

.summary-section h6 {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #dee2e6;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  padding: 5px 0;
}

.summary-label {
  font-weight: 600;
  color: #555;
}

.summary-value {
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .step-indicator {
    flex-wrap: wrap;
  }

  .step {
    margin-bottom: 20px;
  }

  .form-navigation {
    flex-direction: column;
    gap: 10px;
  }

  .form-navigation .btn {
    width: 100%;
  }
}

/* ===== STYLES SUPPLÉMENTAIRES POUR LE FORMULAIRE MULTI-ÉTAPES ===== */

/* Bordure et style du formulaire principal */
.multi-step-form {
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Styles pour les checkboxes */
.form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.form-check-input:checked {
  background-color: #57b846;
  border-color: #57b846;
}

.form-check-input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(87, 184, 70, 0.25);
  outline: none;
}

.form-check-label {
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #666;
  margin-left: 8px;
  cursor: pointer;
  user-select: none;
}

/* Styles pour les selects */
.form-control {
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  padding: 12px 15px;
  font-family: Poppins-Regular;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #fff;
  cursor: pointer;
}

.form-control:focus {
  border-color: #57b846;
  box-shadow: 0 0 0 0.2rem rgba(87, 184, 70, 0.25);
  outline: none;
}

.form-control:hover {
  border-color: #ccc;
}

/* Styles pour les options des selects */
.form-control option {
  padding: 8px 12px;
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #333;
}

/* Styles pour les radio buttons */
.form-check-input[type="radio"] {
  border-radius: 50%;
  width: 18px;
  height: 18px;
}

.form-check-input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
}

/* Styles pour les groupes de formulaires */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-family: Poppins-Medium;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}

/* Styles pour les champs de fichier */
.form-control-file {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
  cursor: pointer;
}

.form-control-file:hover {
  border-color: #57b846;
  background-color: #f0f8f0;
}

.form-control-file:focus {
  border-color: #57b846;
  box-shadow: 0 0 0 0.2rem rgba(87, 184, 70, 0.25);
  outline: none;
}

/* Styles pour les textes d'aide */
.form-text {
  font-family: Poppins-Regular;
  font-size: 12px;
  color: #6c757d;
  margin-top: 5px;
}

/* Amélioration des styles existants */
.step-title {
  color: #333;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
  font-family: Poppins-Bold;
  font-size: 18px;
}

/* Amélioration de la navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 20px 30px;
  border-top: 2px solid #e9ecef;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: -30px;
}

/* Styles pour la validation */
.validation-invalid-label {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.validation-valid-label {
  color: #28a745;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Styles pour les champs de fichier avec Uniform */
.uniform-uploader {
  position: relative;
  display: inline-block;
  width: 100%;
}

.uniform-uploader input[type="file"] {
  position: absolute;
  left: -9999px;
}

.uniform-uploader .action {
  display: inline-block;
  padding: 8px 16px;
  background: #007bff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.uniform-uploader .action:hover {
  background: #0056b3;
}

.uniform-uploader .filename {
  margin-left: 10px;
  color: #666;
  font-style: italic;
}

/* Styles pour les tooltips */
.tooltip {
  font-size: 12px;
}

.tooltip-inner {
  background-color: #333;
  color: white;
  border-radius: 4px;
  padding: 8px 12px;
}

.tooltip.bs-tooltip-top .arrow::before {
  border-top-color: #333;
}

.tooltip.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #333;
}

.tooltip.bs-tooltip-left .arrow::before {
  border-left-color: #333;
}

.tooltip.bs-tooltip-right .arrow::before {
  border-right-color: #333;
}

/* Styles pour les animations de chargement */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Amélioration des selects Select2 */
.select2-container--default .select2-selection--single {
  height: 40px;
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  padding: 0 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 36px;
  padding-left: 0;
  padding-right: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
  right: 8px;
}

.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #57b846;
  box-shadow: 0 0 0 0.2rem rgba(87, 184, 70, 0.25);
}

/* Styles pour les messages d'alerte */
.alert {
  border-radius: 8px;
  border: none;
  font-family: Poppins-Regular;
  margin-bottom: 20px;
}

.alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
  border-left: 4px solid #28a745;
}

.alert-danger {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.alert-info {
  background: linear-gradient(135deg, #d1ecf1, #bee5eb);
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}

/* Responsive pour les nouveaux styles */
@media (max-width: 768px) {
  .multi-step-form {
    padding: 20px;
    margin: 10px;
  }
  
  .form-navigation {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
    padding: 15px 20px;
  }
  
  .form-check-input {
    width: 16px;
    height: 16px;
  }
  
  .form-control {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .select2-container--default .select2-selection--single {
    height: 36px;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 32px;
  }
}

/* Styles pour les selects avec Select2 */
.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 40px;
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  padding: 0 12px;
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 36px;
  padding-left: 0;
  padding-right: 20px;
  color: #666;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
  right: 8px;
}

.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #57b846;
  box-shadow: 0 0 0 0.2rem rgba(87, 184, 70, 0.25);
}

.select2-dropdown {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #57b846;
}

/* Styles pour les champs conditionnels masqués */
#njf, #numoriente, #bourseInfo {
  transition: all 0.3s ease;
}

/* Amélioration des radio buttons */
.form-check-input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-right: 8px;
}

.form-check-input[type="radio"]:checked {
  background-color: #57b846;
  border-color: #57b846;
}

.form-check-input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
}

.form-check-input[type="radio"]:focus {
  box-shadow: 0 0 0 0.2rem rgba(87, 184, 70, 0.25);
  outline: none;
}

/* Styles pour DateRangePicker */
.daterangepicker {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.daterangepicker .calendar-table {
  background: white;
  border-radius: 8px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #57b846;
  border-color: #57b846;
}

.daterangepicker .ranges li.active {
  background-color: #57b846;
  color: white;
}

/* Messages d'erreur de validation */
.validation-invalid-label {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: block;
  font-family: Poppins-Regular;
}

.validation-valid-label {
  color: #28a745;
  font-size: 12px;
  margin-top: 5px;
  display: block;
  font-family: Poppins-Regular;
}

/* Styles pour les champs en erreur */
.form-control.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.form-control.valid {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

/* Animation pour les champs qui apparaissent */
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
  }
}

.form-group.fade-in {
  animation: slideDown 0.5s ease-in-out;
}