/* Styles responsives pour auth.html */

/* Tablettes */
@media (max-width: 992px) {
  .auth-container {
    max-width: 90%;
    padding: 25px;
    margin: 30px auto;
  }
  
  .auth-title {
    font-size: 22px;
  }
  
  .profile-avatar {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

/* Mobiles larges */
@media (max-width: 768px) {
  /* Header mobile déjà géré par common-responsive.css */
  
  /* Ajustement du conteneur principal */
  .auth-container {
    max-width: 100%;
    margin: 20px 10px 40px;
    padding: 20px;
  }
  
  .auth-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  /* Ajustement des onglets */
  .auth-tabs {
    margin-bottom: 20px;
  }
  
  .auth-tab {
    padding: 10px;
    font-size: 15px;
  }
  
  /* Ajustement des formulaires */
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .form-group input {
    padding: 10px;
    font-size: 15px;
  }
  
  .form-group small {
    font-size: 12px;
  }
  
  /* Sélection du rôle en colonne */
  .role-selection {
    flex-direction: column;
    gap: 10px;
  }
  
  .role-option {
    padding: 12px;
  }
  
  .role-option h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .role-option p {
    font-size: 13px;
  }
  
  /* Ajustement des boutons */
  .auth-button {
    padding: 12px 0;
    font-size: 15px;
  }
  
  /* Profil utilisateur */
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-avatar {
    margin: 0 auto 15px;
  }
  
  .profile-info {
    text-align: center;
  }
  
  .profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .profile-actions button {
    width: 100%;
    margin-right: 0;
  }
  
  /* Espace pour la barre de recherche */
  .spacer {
    height: 40px;
  }
}

/* Petits écrans mobiles */
@media (max-width: 576px) {
  .auth-container {
    margin: 15px 10px 30px;
    padding: 15px;
  }
  
  .auth-title {
    font-size: 18px;
  }
  
  .auth-tab {
    padding: 8px;
    font-size: 14px;
  }
  
  .form-group label {
    font-size: 14px;
  }
  
  .form-group input {
    padding: 8px;
    font-size: 14px;
  }
  
  .remember-me {
    font-size: 13px;
  }
  
  .forgot-password a {
    font-size: 13px;
  }
  
  .profile-avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .profile-info h2 {
    font-size: 18px;
  }
  
  .profile-info p {
    font-size: 13px;
  }
}

/* Très petits écrans */
@media (max-width: 360px) {
  .auth-container {
    padding: 12px;
  }
  
  .auth-tab {
    padding: 8px 5px;
    font-size: 13px;
  }
  
  .form-group input {
    padding: 8px;
    font-size: 13px;
  }
}