
.register-customer-card {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  width: 100%;
  margin: auto;
}

.register-customer-header {
  text-align: center;
  margin-bottom: 2rem;
}

.register-customer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.register-customer .form-group {
    margin-bottom: 1rem;
}

.btn-register-customer {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  cursor: pointer;
}

.btn-register-customer:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

.forgot-password {
  display: block;
  margin-bottom: 1rem;
  color: #007bff;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.register-customer-footer {
  text-align: center;
  margin-top: 2rem;
}

.back-to-store {
  display: block;
  margin-bottom: 1rem;
  color: #007bff;
  text-decoration: none;
}

.back-to-store:hover {
  text-decoration: underline;
}


#id_country {
    max-width: 100%; /* Ajuste la largeur */
    height: calc(1.5em + .75rem + 2px); /* Ajuste la hauteur pour correspondre aux autres champs */
    padding: .375rem .75rem; /* Ajuste le padding */
    border: 1px solid #ced4da; /* Ajuste la couleur de la bordure */
    border-radius: .25rem; /* Ajuste le rayon de la bordure */
}

