.page-wrapper {
  padding-right: 100px;
}

.form-signin {
  background: #ffffff;
  padding: 50px;
  border-radius: 15px;
  max-width: 490px;
  margin-left: auto;
  margin-right: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.form-signin h1, .form-signin h2, .form-signin p {
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
}

/* Mot de passe + œil */
#show_hide_password {
  position: relative;
}

#toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-image: url("https://cdn.findzle.ca/icons/eye.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
}

#toggle-password.showing {
  background-image: url("https://cdn.findzle.ca/icons/eye-slash.svg");
}

/* Switch mémoire */
.checkbox .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.checkbox .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox .slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 22px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.checkbox .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.checkbox input:checked + .slider {
  background-color: #2196F3;
}

.checkbox input:checked + .slider:before {
  transform: translateX(18px);
}

/* Bouton principal */
.btn-primary {
  background-color: #3282e6;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  width: 100%;
}

.btn-primary:hover {
  background-color: #1d6fd4;
}

/* Radios stylisés */
.form-check {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}

.form-check:hover {
  border-color: #007bff;
}

.form-check-input {
  margin-right: 12px;
  transform: scale(1.2);
  accent-color: #3282e6;
}

.form-check-label {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}
