.ava{
	background-color: currentColor;
    width: 70px;
    height: 70px;
    border-radius: 70px;
	margin: auto auto;
}
.avaname{
	color:white;
	font-size: 30px;
    font-weight: bold;
    line-height: 70px;
}

/* Styles pour la page de réinitialisation de mot de passe */
.reset-password-form {
    max-width: 500px;
    margin: 0 auto;
}

.password-requirements {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.password-strength {
    height: 4px;
    margin-top: 0.5rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.password-strength.weak {
    background-color: #dc3545;
    width: 33%;
}

.password-strength.medium {
    background-color: #ffc107;
    width: 66%;
}

.password-strength.strong {
    background-color: #28a745;
    width: 100%;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}