/* registration form | begin */
/* Conteneur du formulaire */
#registration-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    font-family: Arial, sans-serif;
}

/* Titre */
#registration-form h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Labels */
#registration-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Champs (input, select, etc.) */
#registration-form input,
#registration-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus */
#registration-form input:focus,
#registration-form select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.3);
}

/* Checkbox (agreeTerms) */
#registration-form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

/* Ligne checkbox + label */
#registration-form .form-check,
#registration-form div:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#registration-form .btn-validate {
    width: 50%;
    margin-left: 25%;
}
/* registration form | end */

/* login form | begin */
/* Conteneur du formulaire */
#login-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    font-family: Arial, sans-serif;
}

/* Titre */
#login-form h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Labels */
#login-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Champs (input, select, etc.) */
#login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus */
#login-form input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.3);
}

/* Checkbox (agreeTerms) */
#login-form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

/* Ligne checkbox + label */
#login-form .form-check,
#login-form div:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#login-form .btn-validate {
    width: 50%;
    margin-left: 25%;
}
/* login form | end */

/* request new password form | begin */
/* Conteneur du formulaire */
#request-new-password-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    font-family: Arial, sans-serif;
}

/* Titre */
#request-new-password-form h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Labels */
#request-new-password-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Champs (input, select, etc.) */
#request-new-password-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus */
#request-new-password-form input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.3);
}
#request-new-password-form .btn-validate {
    width: 50%;
    margin-left: 25%;
}
/* request new password form | end */

/* register product form | begin */
/* Conteneur du formulaire */
#register-product-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    font-family: Arial, sans-serif;
}

/* Titre */
#register-product-form h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Labels */
#register-product-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Champs (input, select, etc.) */
#register-product-form input,
#register-product-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus */
#register-product-form input:focus,
#register-product-form select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.3);
}

#register-product-form .btn-validate {
    width: 50%;
    margin-left: 25%;
}
/* register product form | end */

/* email update form | begin */
/* Conteneur du formulaire */
#email-update-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    font-family: Arial, sans-serif;
}

/* Titre */
#email-update-form h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Labels */
#email-update-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Champs (input, select, etc.) */
#email-update-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus */
#email-update-form input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.3);
}

#email-update-form .btn-validate {
    width: 50%;
    margin-left: 25%;
}
/* email update form | end */

/* password update form | begin */
/* Conteneur du formulaire */
#password-update-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    font-family: Arial, sans-serif;
}

/* Titre */
#password-update-form h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Labels */
#password-update-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Champs (input, select, etc.) */
#password-update-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus */
#password-update-form input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.3);
}

#password-update-form .btn-validate {
    width: 50%;
    margin-left: 25%;
}
/* password update form | end */

/* edit product form | begin */
/* Conteneur du formulaire */
#edit-product-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    font-family: Arial, sans-serif;
}

/* Titre */
#edit-product-form h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Labels */
#edit-product-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Champs (input, select, etc.) */
#edit-product-form input,
#edit-product-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus */
#edit-product-form input:focus,
#edit-product-form select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.3);
}

#edit-product-form .btn-validate {
    width: 50%;
    margin-left: 25%;
}
/* edit product form | end */
