/*
 * Globals
 */

 :root {
  /* Couleurs de la marque BirdAi */
  --bs-primary: #ffffff;
  --bs-primary-rgb: 255, 255, 255;
  
  --bs-secondary: #ed1a3b;
  --bs-secondary-rgb: 237, 26, 59;
  
  --bs-danger: #ed1a3b; /* Rouge alerte */
  --bs-danger-rgb: 237, 26, 59;

  /* Neutres teinté */
  --bs-light: #f0f0f0;
  --bs-light-rgb: 240, 240, 240;
  
  /* Couleur du corps de texte (Body) */
  --bs-body-color: #000; 
  --bs-body-bg: #FFFFFF;
}

/* Application des overrides pour les boutons (optionnel mais recommandé) */
.btn-primary {
  background-color: var(--bs-primary);
  border-color: #444444;
  color: black;
}
.btn-primary:disabled {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #444444;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: black !important; 
  border-color: black !important;
  color: white !important;
}


/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

.nav-link:focus, .nav-link:hover {
  color: #fff;
}

/*
 * Base structure
 */

html,
body {
  height: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

body {
  display: -ms-flexbox;
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}


.cover-container {
  max-width: 42em;
  display: flex;
  height: 94%;
}


/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}



/*
 * BackGround
 */


/* Login */
.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}
.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  
}