/* Assure que les colonnes couvrent toute la hauteur de la page */
html, body {
  font-family: 'Manrope', sans-serif;
  height: 100%;
  margin: 0;
}
.row {
  height: 100%;
}
h1{
  font-family: 'Rubik', sans-serif;
  font-weight: light;
  color: #333780;
}

h2{
  font-family: 'Rubik', sans-serif;
  font-weight: light;
  color: white;
}


/* Styles pour les deux colonnes */
.bg-orange {
  background-color:  #EF5330;
}
.custom-text-orange{
  color: #EF5330;
}
.custom-text-blue{
  color: #467FFF;
}
.bg-white {
  background-color: white;
}

.bg-grey {
  background-color: #F3F3F3;
}

.bg-grey-middle {
  background-color: #E3E3E3;
}

.custom-btn-primary {
  background-color: #467FFF; /* Bleu personnalisé */
  border-color: #467FFF;
  color: white;
}

.custom-btn-primary:hover {
  background-color: #333780; /* Bleu personnalisé */
  border-color: #333780;
  color: white;
}

.custom-btn-secondary {
  background-color: #EF5330; /* Orange personnalisé */
  border-color: #EF5330;
  color: white;
}

.custom-btn {
  width: 100%;
  margin-top: 15px;
}

.title{
  font-family: 'Rubik', sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  color: black; 
}

.title_orange{
  font-family: 'Rubik', sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: left;
  color: #EF5330; 
}

label{
  font-family: 'Rubik', sans-serif;
  font-weight: bolder;
}

.custom-card{
  font-family: 'Manrope', sans-serif;
  min-width: 500px;
}

a.link{
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
 
}

a.link:hover{
  font-family: 'Manrope', sans-serif;
  text-decoration: underline;
  color: #333780;
}

.img-tiny{
  width: 50px;
  height: auto;
  position: relative;
  top:-2px;

}

.img-tiny-other{
  width: 40px;
  height: auto;
  position: relative;
  top:-2px;

}

/* Ombre uniquement sur le bord inférieur */
.shadow-bottom {
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2); /* Ombre en bas seulement */
  }

  p{
    font-family: 'Manrope', sans-serif;
  }

  a{
    font-family: 'Manrope', sans-serif;
  }

  .btn,button{
    font-family: 'Manrope', sans-serif;
  }

/* Redéfinir btn-outline-warning pour utiliser l'orange #EF5330 */
.btn-outline-warning {
  color: #EF5330; /* Couleur du texte */
  border: 2px solid #EF5330; /* Bordure orange */
  background-color: transparent; /* Fond transparent */
}

.btn-outline-warning:hover {
  color: #fff; /* Texte blanc au survol */
  background-color: #EF5330; /* Fond orange au survol */
  border-color: #EF5330; /* Conserver la bordure orange au survol */
}
  