body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem; /* Base font size: 16px */
    line-height: 1.5;
}
.profile-container {
    max-width: 700px; /* Slightly wider for better form layout */
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
}
.profile-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}
.profile-header h1 {
    font-size: 1.75rem; /* Reduced for consistency (was 2rem) */
    font-weight: 700;
    color: #1a202c; /* Dark gray for headings */
    margin-bottom: 0.5rem;
}
.profile-header .text-muted {
    font-size: 0.9rem; /* Slightly smaller for role (was 1rem) */
    color: #6b7280; /* Muted gray for role */
}
.profile-info .row {
    margin-bottom: 1rem;
    font-size: 1rem; /* Consistent body text */
    color: #2d3748; /* Darker text for readability */
}
.profile-info .col-4 {
    font-weight: 600; /* Bold labels */
    color: #1a202c;
    font-size: 1rem; /* Match body text */
}
.section-title {
    font-size: 1.25rem; /* Slightly smaller for hierarchy (was 1.5rem) */
    font-weight: 600;
    color: #1a202c;
    margin: 2rem 0 1rem;
    border-left: 4px solid #3b82f6; /* Blue accent */
    padding-left: 0.75rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem; /* Consistent with body text */
}
.form-group input {
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 0.75rem;
    font-size: 1rem; /* Match body text */
    width: 100%;
    transition: border-color 0.2s ease;
}
.form-group input:focus {
    outline: none;
    border-color: #3b82f6; /* Blue focus ring */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.btn {
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem; /* Consistent button text */
    border-radius: 6px;
    transition: all 0.2s ease;
}
.btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
    margin-bottom: 2%;
}
.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    transform: translateY(-1px);
}
.btn-danger {
    background-color: #ef4444;
    border-color: #ef4444;
}
.btn-danger:hover {
    background-color: #dc2626;
    border-color: #dc2626;
    transform: translateY(-1px);
}
.btn-warning {
    background-color: #f59e0b;
    border-color: #f59e0b;
}
.btn-warning:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-1px);
}
.alert {
    border-radius: 6px;
    padding: 1rem;
    font-size: 0.95rem; /* Slightly smaller for alerts */
    margin-bottom: 1.5rem;
}
.alert-success {
    background-color: #d1fae5;
    color: #065f46;
}
.alert-warning {
    background-color: #fef3c7;
    color: #92400e;
}
.form-container {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

/* Estilo para el título de requisitos */
.password-requirements-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 10px;
    color: #333;
}

/* Estilo para la lista de requisitos */
.password-requirements {
    list-style-type: none; /* Quitar viñetas predeterminadas */
    padding-left: 0;
    margin-top: 10px;
}

/* Estilo para cada ítem de requisitos */
.password-requirements li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
    font-size: 0.95em;
    color: #555;
}

/* Agregar un icono o símbolo antes de cada requisito */
.password-requirements li::before {
    content: "✔"; /* Puedes cambiar por ✖ o cualquier símbolo */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1em;
    color: #4CAF50; /* Verde para requisitos cumplidos */
}
